summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2008-09-18 14:52:28 +0000
committerOlivier Blin <oblin@mandriva.com>2008-09-18 14:52:28 +0000
commitacefc5db3e7bd3957f555bd3e300db17c0b815da (patch)
tree5a9babac8d488c231ab8f7f573969b3339e885c7 /perl-install/pkgs.pm
parent5f381cb6890b3edac05397a82f8c3041ddb472e5 (diff)
downloaddrakx-acefc5db3e7bd3957f555bd3e300db17c0b815da.tar
drakx-acefc5db3e7bd3957f555bd3e300db17c0b815da.tar.gz
drakx-acefc5db3e7bd3957f555bd3e300db17c0b815da.tar.bz2
drakx-acefc5db3e7bd3957f555bd3e300db17c0b815da.tar.xz
drakx-acefc5db3e7bd3957f555bd3e300db17c0b815da.zip
fix network packages detection
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index d26640622..3d1a959aa 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -183,7 +183,7 @@ sub detect_network_drivers {
@network_settings = @all_settings;
} else {
my @connections = $type->get_connections(automatic_only => 1, fast_only => 1);
- @network_settings = map { @{$_->get_thirdparty_settings || []} } @connections;
+ @network_settings = map { network::thirdparty::find_settings(\@all_settings, $_->get_driver) } @connections;
}
foreach my $settings (@network_settings) {
foreach (@network::thirdparty::thirdparty_types) {