summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2005-05-30 07:54:14 +0000
committerOlivier Blin <oblin@mandriva.org>2005-05-30 07:54:14 +0000
commitc2325bdb3a7437ed4373973d11db6007732cc847 (patch)
treeebf8917fcae528d45147bd1eaaa289b42f67b34a
parentec037974aa4b229446e26c24f7a251994d701943 (diff)
downloaddrakx-backup-do-not-use-c2325bdb3a7437ed4373973d11db6007732cc847.tar
drakx-backup-do-not-use-c2325bdb3a7437ed4373973d11db6007732cc847.tar.gz
drakx-backup-do-not-use-c2325bdb3a7437ed4373973d11db6007732cc847.tar.bz2
drakx-backup-do-not-use-c2325bdb3a7437ed4373973d11db6007732cc847.tar.xz
drakx-backup-do-not-use-c2325bdb3a7437ed4373973d11db6007732cc847.zip
$netc->{isdntype} is unneeded
-rw-r--r--perl-install/network/netconnect.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index 24e195b96..8c3cc822c 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -429,11 +429,10 @@ sub real_main {
if ($isdn_name eq $my_isdn) {
return "isdn_ask";
} elsif ($isdn_name eq N("External ISDN modem")) {
- $netcnx->{type} = $netc->{isdntype} = 'isdn_external';
+ $netcnx->{type} = 'isdn_external';
return "modem";
}
- $netc->{isdntype} = 'isdn_internal';
# FIXME: some of these should be taken from isdn db
$netcnx->{isdn_internal} = $isdn = { map { $_ => $isdn_cards{$isdn_name}{$_} } qw(description vendor id card_type driver type mem io io0 io1 irq firmware) };