From f0a8595e507d816ec387642b42eace70ccc4715f Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 20 Sep 2019 10:36:08 -0400 Subject: [PATCH] quiet warning caused by server_up being undef for false --- scripts/zmcontrol.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/zmcontrol.pl.in b/scripts/zmcontrol.pl.in index 1ac21f0ea..ea6fa36b0 100644 --- a/scripts/zmcontrol.pl.in +++ b/scripts/zmcontrol.pl.in @@ -83,7 +83,7 @@ if ( $options{command} ) { my $tries = 10; my $server_up; while ( $tries and ! ( $server_up = connect(CLIENT, $saddr) ) ) { - Debug("Failed to connect to $server_up at $sock_file"); + Debug("Failed to connect to zmcontrol server at $sock_file"); runCommand("zmdc.pl start zmcontrol.pl --id=$id"); sleep 1; $tries -= 1;