summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRémy Oudompheng <remy@archlinux.org>2011-07-03 19:03:54 +0200
committerRémy Oudompheng <remy@archlinux.org>2011-07-03 19:03:54 +0200
commitf9b577df6c56a55703b5e5ed852d18f5a4e702ae (patch)
treea884f873d1ee3842b823336323cfa883279d84ff /src
parent3c705328961e226d37a9a5b8275fec146d490a10 (diff)
downloadnetctl-f9b577df6c56a55703b5e5ed852d18f5a4e702ae.tar.gz
netctl-f9b577df6c56a55703b5e5ed852d18f5a4e702ae.tar.xz
8021x: fix a typo preventing WEP connection from working (FS#24896)
Signed-off-by: Rémy Oudompheng <remy@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/8021x2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/8021x b/src/8021x
index 8896c3e..0a39e82 100644
--- a/src/8021x
+++ b/src/8021x
@@ -203,7 +203,7 @@ make_wpa_config() {
case $SECURITY in
wep|wep-old)
echo "key_mgmt=NONE"
- echo "wep_tx_idx=0"
+ echo "wep_tx_keyidx=0"
if [[ ${KEY:0:2} == "s:" ]]; then # TODO: does wpa_supplicant handle this as expected?
echo "wep_key0=\"${KEY:2}\""
else