diff options
author | Damien Chaumette <dchaumette@mandriva.com> | 2003-01-23 11:27:19 +0000 |
---|---|---|
committer | Damien Chaumette <dchaumette@mandriva.com> | 2003-01-23 11:27:19 +0000 |
commit | ef6406a47d70f21632c656eb829c321b95fe9189 (patch) | |
tree | b7737da22875788afe6018ae5a5ea78fcd11a285 /perl-install/network/isdn.pm | |
parent | d5ac99d987c49dc81aab14b6ff0a811a1a84adf2 (diff) | |
download | drakx-ef6406a47d70f21632c656eb829c321b95fe9189.tar drakx-ef6406a47d70f21632c656eb829c321b95fe9189.tar.gz drakx-ef6406a47d70f21632c656eb829c321b95fe9189.tar.bz2 drakx-ef6406a47d70f21632c656eb829c321b95fe9189.tar.xz drakx-ef6406a47d70f21632c656eb829c321b95fe9189.zip |
isdn.pm now in use strict
little cleanup
Diffstat (limited to 'perl-install/network/isdn.pm')
-rw-r--r-- | perl-install/network/isdn.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/network/isdn.pm b/perl-install/network/isdn.pm index ba5477867..58ff7a8b6 100644 --- a/perl-install/network/isdn.pm +++ b/perl-install/network/isdn.pm @@ -278,7 +278,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: @@ -326,12 +326,12 @@ sub isdn_detect_backend { } sub isdn_get_list { - map { $_->{description} } @isdndata; + map { $_->{description} } @isdn::isdndata; } sub isdn_get_info { my ($desc) = @_; - foreach (@isdndata) { + foreach (@isdn::isdndata) { return $_ if $_->{description} eq $desc; } } |