From da6c51ca73e6b67be52a984fb3bc226fd16e6c4e Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Tue, 18 Jul 2023 01:17:54 -0400 Subject: [PATCH] fix(tools): correct loop over tunnel list --- tools/striker-manage-vnc-pipes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/striker-manage-vnc-pipes b/tools/striker-manage-vnc-pipes index c19af1ad..45aef4c1 100755 --- a/tools/striker-manage-vnc-pipes +++ b/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);