diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-14 14:44:42 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-14 14:44:42 +0000 |
commit | 8e468adaa42e55358a5fce716ecb3d498b95ff10 (patch) | |
tree | a69d14a9ec0c354ffb4cccc0e2059a8093f43040 /perl-install/network | |
parent | eb22c078dbce4e20b1e7a5989a10f453f0d245b0 (diff) | |
download | drakx-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar drakx-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar.gz drakx-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar.bz2 drakx-8e468adaa42e55358a5fce716ecb3d498b95ff10.tar.xz drakx-8e468adaa42e55358a5fce716ecb3d498b95ff10.zip |
typo fix (Arpad Biro)
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/netconnect.pm | 4 |
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"); |