summaryrefslogtreecommitdiffstats
path: root/perl-install/network
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2005-02-14 14:44:42 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2005-02-14 14:44:42 +0000
commit8e468adaa42e55358a5fce716ecb3d498b95ff10 (patch)
treea69d14a9ec0c354ffb4cccc0e2059a8093f43040 /perl-install/network
parenteb22c078dbce4e20b1e7a5989a10f453f0d245b0 (diff)
downloaddrakx-backup-do-not-use-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar
drakx-backup-do-not-use-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar.gz
drakx-backup-do-not-use-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar.bz2
drakx-backup-do-not-use-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar.xz
drakx-backup-do-not-use-8e468adaa42e55358a5fce716ecb3d498b95ff10.zip
typo fix (Arpad Biro)
Diffstat (limited to 'perl-install/network')
-rw-r--r--perl-install/network/netconnect.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm
index b4246a0de..e967b8428 100644
--- a/perl-install/network/netconnect.pm
+++ b/perl-install/network/netconnect.pm
@@ -1064,7 +1064,7 @@ notation (for example, 1.2.3.4).")),
ndiswrapper =>
{
data => sub {
- [ { label => N("Choose a ndiswrapper driver"), type => "list", val => \$ndiswrapper_driver,
+ [ { label => N("Choose an ndiswrapper driver"), type => "list", val => \$ndiswrapper_driver,
list => [ N("Install a new driver"), N("Use already installed driver (%s)", join(", ", network::tools::ndiswrapper_installed_drivers())) ] } ];
},
complete => sub {
@@ -1100,7 +1100,7 @@ notation (for example, 1.2.3.4).")),
modules::load("ndiswrapper");
#- FIXME: move this somewhere in get_eth_cards, so that configure_eth_aliases correctly writes ndiswrapper
- #- find the first interface matching a ndiswrapper driver, try ethtool then sysfs
+ #- find the first interface matching an ndiswrapper driver, try ethtool then sysfs
my @available_drivers = network::tools::ndiswrapper_available_drivers();
$ntf_name = find {
my $drv = c::getNetDriver($_) || readlink("/sys/class/net/$_/driver");