diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-04-03 02:34:43 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-04-03 02:34:43 +0000 |
commit | e42d0395e44fed94be6cb228f1b15a65319503fe (patch) | |
tree | c9f49500a8b2b07523b0e3636ed9cf177d14d98d | |
parent | 8084b25e15cf2d46e2a038647b1afa8be2f35a02 (diff) | |
download | drakx-net-e42d0395e44fed94be6cb228f1b15a65319503fe.tar drakx-net-e42d0395e44fed94be6cb228f1b15a65319503fe.tar.gz drakx-net-e42d0395e44fed94be6cb228f1b15a65319503fe.tar.bz2 drakx-net-e42d0395e44fed94be6cb228f1b15a65319503fe.tar.xz drakx-net-e42d0395e44fed94be6cb228f1b15a65319503fe.zip |
use 32 bytes as max WEP key length (now that wpa_supplicant supports it)
-rw-r--r-- | lib/network/connection/wireless.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/connection/wireless.pm b/lib/network/connection/wireless.pm index 9391a4d..aef2131 100644 --- a/lib/network/connection/wireless.pm +++ b/lib/network/connection/wireless.pm @@ -36,7 +36,7 @@ sub get_metric { 35 } #- class attributes: #- network: ID of the selected network -my $wpa_supplicant_max_wep_key_len = 16; +my $wpa_supplicant_max_wep_key_len = 32; our %wireless_enc_modes = ( none => N_("None"), |