From d19e38d5d563feb8aa17492256557f14c40c0851 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 26 Jul 2005 08:40:55 +0000 Subject: fix variable declaration --- perl-install/network/network.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm index e72da0e55..321f61ec9 100644 --- a/perl-install/network/network.pm +++ b/perl-install/network/network.pm @@ -579,7 +579,8 @@ sub configure_network { } #- make net_applet reload the configuration - my $pid = chomp_(`pidof -x net_applet`) and kill 1, $pid; + my $pid = chomp_(`pidof -x net_applet`); + $pid and kill 1, $pid; } 1; -- cgit v1.2.1