From 868f8ef6acc35e7f402f082fb8398c22bbd012b5 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 4 Dec 2002 21:22:16 +0000 Subject: remove unused variables or rename them with an underscore (eg: $o becomes $_o) --- perl-install/network/tools.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'perl-install/network/tools.pm') diff --git a/perl-install/network/tools.pm b/perl-install/network/tools.pm index 8eff41c9b..c86f9de4c 100644 --- a/perl-install/network/tools.pm +++ b/perl-install/network/tools.pm @@ -58,14 +58,13 @@ sub ask_connect_now { N("Do you want to try to connect to the Internet now?") )) { { - my $w = $in->wait_message('', N("Testing your connection..."), 1); + my $_w = $in->wait_message('', N("Testing your connection..."), 1); connect_backend(); my $s = 30; $type =~ /modem/ and $s = 50; $type =~ /adsl/ and $s = 35; $type =~ /isdn/ and $s = 20; sleep $s; - my $netc = {}; $up = connected(); } my $m = $up ? N("The system is now connected to Internet.") . -- cgit v1.2.1