diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-04 12:46:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-04 12:46:32 +0000 |
commit | 922d0e1757d5aa07887f2a828a4cd7c5aa453fdc (patch) | |
tree | de598bf569d392b837c454eca51ed7e823305c4c /perl-install/network/adsl.pm | |
parent | e81614106311688a1932251f23ac42ad04ada4fe (diff) | |
download | drakx-922d0e1757d5aa07887f2a828a4cd7c5aa453fdc.tar drakx-922d0e1757d5aa07887f2a828a4cd7c5aa453fdc.tar.gz drakx-922d0e1757d5aa07887f2a828a4cd7c5aa453fdc.tar.bz2 drakx-922d0e1757d5aa07887f2a828a4cd7c5aa453fdc.tar.xz drakx-922d0e1757d5aa07887f2a828a4cd7c5aa453fdc.zip |
syntax changes to make perl_checker happy
Diffstat (limited to 'perl-install/network/adsl.pm')
-rw-r--r-- | perl-install/network/adsl.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index c9e8969b8..2d3a6bee2 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -85,9 +85,9 @@ If you don't know, choose 'use pppoe'"), $l) or return; sub adsl_ask_info { my ($adsl, $netc, $intf, $adsl_type) = @_; my $pppoe_file = "/etc/ppp/pppoe.conf"; - my $pppoe_conf = { getVarsFromSh($pppoe_file) } if ($adsl_type =~ /pppoe/ && -f $pppoe_file); + my $pppoe_conf = { getVarsFromSh($pppoe_file) } if $adsl_type =~ /pppoe/ && -f $pppoe_file; add2hash($netc, { dnsServer2 => '', dnsServer3 => '', DOMAINNAME2 => '' }); - add2hash($adsl, { login => "$pppoe_conf->{USER}", passwd => '', passwd2 => '' }); + add2hash($adsl, { login => $pppoe_conf->{USER}, passwd => '', passwd2 => '' }); ask_info2($adsl, $netc); } @@ -103,7 +103,7 @@ sub adsl_conf { my ($adsl, $netc, $intf, $adsl_type) = @_; adsl_conf_step_1: - adsl_ask_info ($adsl, $netc, $intf, $adsl_type) or return; + adsl_ask_info($adsl, $netc, $intf, $adsl_type) or return; adsl_conf_step_2: $adsl_type =~ /speedtouch|eci/ or conf_network_card($netc, $intf, 'static', '10.0.0.10') or goto adsl_conf_step_1; adsl_conf_backend($adsl, $netc, $adsl_type); |