summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-28 12:09:32 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-28 12:09:32 +0000
commit5e503f16eecc175b793102a24b3e7cb5cc5e820b (patch)
tree02a07f7acc4c93e670a116e90e3f36e44ec08386
parent6a845868e1d54b46df737953dce31a8bad355c9e (diff)
downloaddrakx-5e503f16eecc175b793102a24b3e7cb5cc5e820b.tar
drakx-5e503f16eecc175b793102a24b3e7cb5cc5e820b.tar.gz
drakx-5e503f16eecc175b793102a24b3e7cb5cc5e820b.tar.bz2
drakx-5e503f16eecc175b793102a24b3e7cb5cc5e820b.tar.xz
drakx-5e503f16eecc175b793102a24b3e7cb5cc5e820b.zip
removed useless variable
-rw-r--r--perl-install/network/netconnect.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index d634d6b7d..70345bb27 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -81,7 +81,7 @@ sub get_subwizard {
my $mouse = $o_mouse ||= {};
my $intf = $o_intf ||= {};
my $first_time = $o_first_time || 0;
- my ($network_configured, $direct_net_install, $cnx_type, $type, $interface, @cards, @all_cards, @devices, %eth_intf);
+ my ($network_configured, $direct_net_install, $cnx_type, $type, $interface, @all_cards, @devices, %eth_intf);
my (%connections, @connection_list);
my ($modem, $modem_name, $modem_conf_read, $modem_dyn_dns, $modem_dyn_ip);
my ($adsl_type, $adsl_protocol, @adsl_devices, $adsl_failed, $adsl_answer, %adsl_data, $adsl_data, $adsl_provider, $adsl_old_provider);
@@ -136,7 +136,6 @@ sub get_subwizard {
detect($netc->{autodetect}, 'lan') if !$::isInstall;
modules::interactive::load_category($in, 'network/main|gigabit|usb|pcmcia', !$::expert, 1);
@all_cards = network::ethernet::get_eth_cards();
- @cards = map { $_->[0] } @all_cards;
foreach my $card (@all_cards) {
modules::remove_alias($card->[1]);
modules::add_alias($card->[0], $card->[1]);