From 70be8693d0261dd1ea270d5047bb5ab64f89dfbc Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 19 Jan 2005 09:47:15 +0000 Subject: adapt to new network::ethernet::get_eth_cards_names() prototype --- perl-install/standalone/drakconnect | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'perl-install/standalone/drakconnect') diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index bb45f2336..83591a46a 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -202,16 +202,16 @@ sub manage { $notebook->set_property('show-border', 0); @all_cards = network::ethernet::get_eth_cards($modules_conf); - my %name = network::ethernet::get_eth_cards_names(@all_cards); - foreach (keys %name) { - my $dev = /eth|ath|wlan/ ? $name{$_} : $_; + my $names = network::ethernet::get_eth_cards_names(@all_cards); + foreach (keys %$names) { + my $dev = /eth|ath|wlan/ ? $names->{$_} : $_; $p->{$dev} = { name => $_ , intf => $intf->{$_} }; } while (my ($device, $interface) = each %$intf) { - exists $name{$device} and next; + exists $names->{$device} and next; my $type = network::tools::get_interface_type($interface); $p->{"$type ($device)"} = { name => $device, @@ -671,7 +671,7 @@ sub del_intf() { $in->exit(0); } @all_cards = network::ethernet::get_eth_cards($modules_conf); - my %ethernet_names = network::ethernet::get_eth_cards_names(@all_cards); + my $ethernet_names = network::ethernet::get_eth_cards_names(@all_cards); my $wiz = { defaultimage => "drakconnect.png", @@ -684,7 +684,7 @@ sub del_intf() { list => [ keys %$intf ], format => sub { my $type = network::tools::get_interface_type($intf->{$_[0]}); - $ethernet_names{$_[0]} || ($type ? "$type ($_[0])" : $_[0]) + $ethernet_names->{$_[0]} || ($type ? "$type ($_[0])" : $_[0]) } } ], -- cgit v1.2.1