diff options
author | damien <damien@mandriva.com> | 2001-08-03 23:24:26 +0000 |
---|---|---|
committer | damien <damien@mandriva.com> | 2001-08-03 23:24:26 +0000 |
commit | 8892216863adeda2e8cfd199d016ab9141f8e401 (patch) | |
tree | b2eb193e432cd77012a78f46478b563a527720e4 /perl-install/network/netconnect.pm | |
parent | e43d7789133b955e73f15118ebc8926478e97e59 (diff) | |
download | drakx-backup-do-not-use-8892216863adeda2e8cfd199d016ab9141f8e401.tar drakx-backup-do-not-use-8892216863adeda2e8cfd199d016ab9141f8e401.tar.gz drakx-backup-do-not-use-8892216863adeda2e8cfd199d016ab9141f8e401.tar.bz2 drakx-backup-do-not-use-8892216863adeda2e8cfd199d016ab9141f8e401.tar.xz drakx-backup-do-not-use-8892216863adeda2e8cfd199d016ab9141f8e401.zip |
debugging, 128Kb/s ISDN
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 92e3ab0c7..56aa7919a 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -147,7 +147,7 @@ ifdown eth0 my $set_default; my %conf; - $conf{$_} = $netc->{autodetect}{$_} ? 1 : 0 foreach qw(modem adsl cable lan); + $conf{$_} = $netc->{autodetect}{$_} ? 1 : 0 foreach 'modem', 'adsl', 'cable', 'lan'; $conf{isdn} = $netc->{autodetect}{isdn}{description} ? 1: 0; my @l = ( [_("Normal modem connection"), $netc->{autodetect}{modem}, __("detected on port %s"), \$conf{modem}], |