diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-22 15:34:07 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-22 15:34:07 +0000 |
commit | 85654bf7f19e92daaef440fe589f8071eaadb9fc (patch) | |
tree | 5ed63736ff9f5d29bb4e35f59ac8d13021b970d1 /perl-install/network/isdn.pm | |
parent | bcebaac6df625e0293a52d614b8a8bae38d5df25 (diff) | |
download | drakx-85654bf7f19e92daaef440fe589f8071eaadb9fc.tar drakx-85654bf7f19e92daaef440fe589f8071eaadb9fc.tar.gz drakx-85654bf7f19e92daaef440fe589f8071eaadb9fc.tar.bz2 drakx-85654bf7f19e92daaef440fe589f8071eaadb9fc.tar.xz drakx-85654bf7f19e92daaef440fe589f8071eaadb9fc.zip |
fix steping back on choosing isdn card step
Diffstat (limited to 'perl-install/network/isdn.pm')
-rw-r--r-- | perl-install/network/isdn.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/isdn.pm b/perl-install/network/isdn.pm index 4605963cc..4cb500634 100644 --- a/perl-install/network/isdn.pm +++ b/perl-install/network/isdn.pm @@ -206,7 +206,7 @@ If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your card. $e = $in->ask_from_listf(N("ISDN Configuration"), N("Which of the following is your ISDN card?"), sub { $_[0]{description} }, - [ grep { $_->{card} eq $isdn->{card_type} } @isdndata ]) or goto isdn_ask_step_1b; + [ grep { $_->{card} eq $isdn->{card_type} } @isdndata ]) or goto ($isdn->{card_type} =~ /usb|pci/ ? 'isdn_ask_step_1' : 'isdn_ask_step_1b'); $e->{$_} and $isdn->{$_} = $e->{$_} foreach qw(driver type mem io io0 io1 irq firmware); isdn_ask_step_3: |