diff options
author | Damien Chaumette <dchaumette@mandriva.com> | 2004-05-03 14:29:28 +0000 |
---|---|---|
committer | Damien Chaumette <dchaumette@mandriva.com> | 2004-05-03 14:29:28 +0000 |
commit | 6c7e9bdbfa12bc52da5272de610ff4956e35f715 (patch) | |
tree | d17a8ce7e5bca01908d4fa0e8e9f6ecb1dfef49b /perl-install/network/netconnect.pm | |
parent | c6f3c5e2231430e3359f31050643b903262e0ca9 (diff) | |
download | drakx-6c7e9bdbfa12bc52da5272de610ff4956e35f715.tar drakx-6c7e9bdbfa12bc52da5272de610ff4956e35f715.tar.gz drakx-6c7e9bdbfa12bc52da5272de610ff4956e35f715.tar.bz2 drakx-6c7e9bdbfa12bc52da5272de610ff4956e35f715.tar.xz drakx-6c7e9bdbfa12bc52da5272de610ff4956e35f715.zip |
take ISDN protocol into account for people outside Europe to use it
(kind of lost in space before)
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r-- | perl-install/network/netconnect.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 76f7fbcc1..60651ae4c 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -424,7 +424,10 @@ If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card. { label => N("Protocol"), type => "list", val => \$isdn_type, list => [ keys %isdn_protocols ], format => sub { $isdn_protocols{$_[0]} } } ], - next => "isdn_db", + post => sub { + $isdn->{protocol} = $isdn_type; + return "isdn_db", + } }, |