summaryrefslogtreecommitdiffstats
path: root/perl-install/network/netconnect.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-03-16 14:50:42 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-03-16 14:50:42 +0000
commitc04b43436a2a3111ea9406a319c08b499bd67b43 (patch)
tree45dd7e9acf9405588601c8ef2c0d6faa220dc31a /perl-install/network/netconnect.pm
parentb44d5ac8b075d2318a47f965868dd57a514bc247 (diff)
downloaddrakx-c04b43436a2a3111ea9406a319c08b499bd67b43.tar
drakx-c04b43436a2a3111ea9406a319c08b499bd67b43.tar.gz
drakx-c04b43436a2a3111ea9406a319c08b499bd67b43.tar.bz2
drakx-c04b43436a2a3111ea9406a319c08b499bd67b43.tar.xz
drakx-c04b43436a2a3111ea9406a319c08b499bd67b43.zip
make it clear these checks are only for pci modems
Diffstat (limited to 'perl-install/network/netconnect.pm')
-rw-r--r--perl-install/network/netconnect.pm11
1 files changed, 6 insertions, 5 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index 56fdbe7a7..c43565c0d 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -469,11 +469,12 @@ Take a look at http://www.linmodems.org"),
my %relocations = (ltmodem => $in->do_pkgs->check_kernel_module_packages('ltmodem'));
my $type;
- my $driver = $netc->{autodetect}{modem}{$modem_name}{driver};
- $driver =~ /^Hcf:/ and $type = "hcfpcimodem";
- $driver =~ /^Hsf:/ and $type = "hsflinmodem";
- $driver =~ /^LT:/ and $type = "ltmodem";
- $relocations{$type} || $type && $in->do_pkgs->what_provides($type) or $type = undef;
+ if (my $driver = $netc->{autodetect}{modem}{$modem_name}{driver}) {
+ $driver =~ /^Hcf:/ and $type = "hcfpcimodem";
+ $driver =~ /^Hsf:/ and $type = "hsflinmodem";
+ $driver =~ /^LT:/ and $type = "ltmodem";
+ $relocations{$type} || $type && $in->do_pkgs->what_provides($type) or $type = undef;
+ }
return "no_supported_winmodem" if !$type;