From 6f99b752010aaa74d1d1bcf3f6c36d2bb529d4b3 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 30 Jul 2003 13:34:18 +0000 Subject: fix typo (thanks to perl_checker) --- perl-install/network/ethernet.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 94a727a0f..7eb54397e 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -70,7 +70,7 @@ I cannot set up this connection type.")), return; my $interface = $in->ask_from_listf(N("Choose the network interface"), N("Please choose which network adapter you want to use to connect to Internet."), - sub { $_->[0] . ($_->[1] ? " (using module $_->[1])" : "") }, + sub { my ($e) = @_; $e->[0] . ($e->[1] ? " (using module $e->[1])" : "") }, \@all_cards) or return; modules::write_conf($prefix) if $::isStandalone; -- cgit v1.2.1