From 954b405c96c8ef47317bc9d80302c42bd29687db Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 2 Mar 2004 13:28:57 +0000 Subject: stricter pci modem matching (purely cosmetic but sanity is always good) --- perl-install/network/netconnect.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'perl-install') 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; } -- cgit v1.2.1