fix(tools): correct loop over tunnel list

This commit is contained in:
Tsu-ba-me 2023-07-18 01:17:54 -04:00 committed by Yanhao Lei
parent d3b67c198b
commit da6c51ca73

View File

@ -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);