diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-24 13:28:07 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-24 13:28:07 +0000 |
commit | 6b1378cc92c3be92e8235182a51e800a628ade6a (patch) | |
tree | e2ce50ba8b75008fc13e159b0e2d21137523b517 /perl-install/network | |
parent | ac2b0e7ca712d3da0f3da49e615a08a603e488cd (diff) | |
download | drakx-6b1378cc92c3be92e8235182a51e800a628ade6a.tar drakx-6b1378cc92c3be92e8235182a51e800a628ade6a.tar.gz drakx-6b1378cc92c3be92e8235182a51e800a628ade6a.tar.bz2 drakx-6b1378cc92c3be92e8235182a51e800a628ade6a.tar.xz drakx-6b1378cc92c3be92e8235182a51e800a628ade6a.zip |
fix module lookup for pcmcia cards
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/netconnect.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 9e0181438..1614c88b6 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -145,7 +145,7 @@ sub real_main { my $find_lan_module = sub { if (my $dev = find { $_->{device} eq $ethntf->{DEVICE} } detect_devices::pcmcia_probe()) { # PCMCIA case - $module = $b->{driver}; + $module = $dev->{driver}; } elsif (my $dev = find { $_->[0] eq $ethntf->{DEVICE} } @all_cards) { $module = $dev->[1]; } else { $module = "" } |