diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-02-29 01:05:41 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-02-29 01:05:41 +0000 |
commit | 3b2a2f199c9bc13eaf80ee17e4629319e9355870 (patch) | |
tree | a5f50281c675d247c3fe56244d2ba2e98a37eaaa /lib/network | |
parent | 791b4a13904988980dc91d9d457da43c9ffb7930 (diff) | |
download | drakx-net-3b2a2f199c9bc13eaf80ee17e4629319e9355870.tar drakx-net-3b2a2f199c9bc13eaf80ee17e4629319e9355870.tar.gz drakx-net-3b2a2f199c9bc13eaf80ee17e4629319e9355870.tar.bz2 drakx-net-3b2a2f199c9bc13eaf80ee17e4629319e9355870.tar.xz drakx-net-3b2a2f199c9bc13eaf80ee17e4629319e9355870.zip |
more space fixes
Diffstat (limited to 'lib/network')
-rw-r--r-- | lib/network/connection/wireless.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/network/connection/wireless.pm b/lib/network/connection/wireless.pm index ae3a700..a0d23ba 100644 --- a/lib/network/connection/wireless.pm +++ b/lib/network/connection/wireless.pm @@ -461,7 +461,7 @@ possible values are WPA-EAP, IEEE8021X, NONE") }, disabled => sub { $self->{access}{network}{encryption} !~ /eap/ }, help => N("Anonymous identity string for EAP: to be used as the unencrypted identity with EAP types that support different -tunnelled identity, e.g., TTLS")}, +tunnelled identity, e.g., TTLS") }, { label => N("EAP phase2"), val => \$self->{access}{network}{eap_phase2}, advanced => 1, disabled => sub { $self->{access}{network}{encryption} !~ /eap/ } , help => N("Inner authentication with TLS tunnel parameters. @@ -945,7 +945,7 @@ sub wpa_supplicant_add_eap_network { }; #Sets the value foreach $myone (keys %$myeap_vars) { - $mykey = join ('_', "eap", $myone); + $mykey = join('_', "eap", $myone); if (!defined $ui_input->{$mykey}) { #Only if it is defined and not empty $network->{$myone} = $default_eap_cfg->{$myone} if (defined $default_eap_cfg->{$myone} && $default_eap_cfg->{$myone} ne ""); |