summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-03-02 13:28:57 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-03-02 13:28:57 +0000
commit954b405c96c8ef47317bc9d80302c42bd29687db (patch)
treeb91686563e5a4fa086cb4c72b62b368def02e284 /perl-install
parenta66969f34012db208a95f3c55e8f75e4bdcc65f3 (diff)
downloaddrakx-954b405c96c8ef47317bc9d80302c42bd29687db.tar
drakx-954b405c96c8ef47317bc9d80302c42bd29687db.tar.gz
drakx-954b405c96c8ef47317bc9d80302c42bd29687db.tar.bz2
drakx-954b405c96c8ef47317bc9d80302c42bd29687db.tar.xz
drakx-954b405c96c8ef47317bc9d80302c42bd29687db.zip
stricter pci modem matching (purely cosmetic but sanity is always good)
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/network/netconnect.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index cdfcf5f8e..fb8baf423 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -384,9 +384,9 @@ Take a look at http://www.linmodems.org"),
my $type;
foreach (map { $_->{driver} } values %{$netc->{autodetect}{modem}}) {
- /Hcf/ and $type = "hcfpcimodem";
- /Hsf/ and $type = "hsflinmodem";
- /LT/ and $type = "ltmodem";
+ /^Hcf:/ and $type = "hcfpcimodem";
+ /^Hsf:/ and $type = "hsflinmodem";
+ /^LT:/ and $type = "ltmodem";
$relocations{$type} || $type && $in->do_pkgs->what_provides($type) or $type = undef;
}