diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-26 13:16:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-26 13:16:50 +0000 |
commit | b5eca05c010ff199990563720872d5dd4e81e635 (patch) | |
tree | 9272bc135853a1caf11aab3ecbf373b2b5f09894 /perl-install/network | |
parent | 03fe53aa27e5818031f66269376504275cc685f2 (diff) | |
download | drakx-b5eca05c010ff199990563720872d5dd4e81e635.tar drakx-b5eca05c010ff199990563720872d5dd4e81e635.tar.gz drakx-b5eca05c010ff199990563720872d5dd4e81e635.tar.bz2 drakx-b5eca05c010ff199990563720872d5dd4e81e635.tar.xz drakx-b5eca05c010ff199990563720872d5dd4e81e635.zip |
replace the last @isdndata with @isdn::isdndata (beurk)
Diffstat (limited to 'perl-install/network')
-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 8a1a6381c..3f7d206f0 100644 --- a/perl-install/network/isdn.pm +++ b/perl-install/network/isdn.pm @@ -279,7 +279,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_1; + [ grep { $_->{card} eq $isdn->{card_type} } @isdn::isdndata ]) or goto isdn_ask_step_1; $e->{$_} and $isdn->{$_} = $e->{$_} foreach qw(driver type mem io io0 io1 irq firmware); isdn_ask_step_3: |