diff options
author | Damien Chaumette <dchaumette@mandriva.com> | 2003-08-28 10:12:24 +0000 |
---|---|---|
committer | Damien Chaumette <dchaumette@mandriva.com> | 2003-08-28 10:12:24 +0000 |
commit | 4c63c45cd3c75aa808149d68d0e01740ad8cd03d (patch) | |
tree | 6f5a6bb01602ba44b3a84db97d82a47fe6cc4cae /perl-install/network/adsl.pm | |
parent | d000e867b5c8da3530196025827bef0c8eedba7a (diff) | |
download | drakx-backup-do-not-use-4c63c45cd3c75aa808149d68d0e01740ad8cd03d.tar drakx-backup-do-not-use-4c63c45cd3c75aa808149d68d0e01740ad8cd03d.tar.gz drakx-backup-do-not-use-4c63c45cd3c75aa808149d68d0e01740ad8cd03d.tar.bz2 drakx-backup-do-not-use-4c63c45cd3c75aa808149d68d0e01740ad8cd03d.tar.xz drakx-backup-do-not-use-4c63c45cd3c75aa808149d68d0e01740ad8cd03d.zip |
fix #4372
Diffstat (limited to 'perl-install/network/adsl.pm')
-rw-r--r-- | perl-install/network/adsl.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm index da89fa44b..7a109f3c1 100644 --- a/perl-install/network/adsl.pm +++ b/perl-install/network/adsl.pm @@ -28,7 +28,7 @@ sub configure { Some connections use pptp, a few use dhcp. If you don't know, choose 'use pppoe'"), [ sort values %l ], - $l{ find { defined $netc->{autodetect}{adsl}{$_} } keys %l } + $l{ find { $netc->{autodetect}{adsl}{$_} } keys %l } ) or return; $type =~ s/use //; if ($type eq 'pppoe') { |