fix(tools): correct loop over tunnel list

main
Tsu-ba-me 1 year ago committed by digimer
parent 4de0b675f1
commit bedbf576ab
  1. 2
      tools/striker-manage-vnc-pipes

@ -240,7 +240,7 @@ sub find_tunnels
my $result = { server_uuids => {}, lports => {} };
while my $line (<$tunnel_ls_fh>)
while (my $line = <$tunnel_ls_fh>)
{
chomp($line);

Loading…
Cancel
Save