diff options
author | Damien Chaumette <dchaumette@mandriva.com> | 2002-10-16 15:25:15 +0000 |
---|---|---|
committer | Damien Chaumette <dchaumette@mandriva.com> | 2002-10-16 15:25:15 +0000 |
commit | aa2734fea38df7d86302f199f437949ddb742ff1 (patch) | |
tree | 401d574acaba25dab5fd951f44d72bdb39e7d362 | |
parent | 419e04582ba827eda8d7435f0c9e510a2ffabde8 (diff) | |
download | drakx-backup-do-not-use-aa2734fea38df7d86302f199f437949ddb742ff1.tar drakx-backup-do-not-use-aa2734fea38df7d86302f199f437949ddb742ff1.tar.gz drakx-backup-do-not-use-aa2734fea38df7d86302f199f437949ddb742ff1.tar.bz2 drakx-backup-do-not-use-aa2734fea38df7d86302f199f437949ddb742ff1.tar.xz drakx-backup-do-not-use-aa2734fea38df7d86302f199f437949ddb742ff1.zip |
- winmodem detection fix
-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 70116cf5d..59bde18bf 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -78,7 +78,7 @@ sub detect { my $modem = {}; require network::modem; network::modem->import; - my (@pci_modems, $modem) = detect_devices::getModem; + my (@pci_modems, $modem) = detect_devices::getModem; pop @pci_modems; $modem->{device} and $auto_detect->{modem} = $modem->{device}; show_pci_modems(@pci_modems) if @pci_modems; } |