aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-01-14 18:48:42 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-01-14 18:48:42 +0000
commit1abe203fb6241f69763dfd16783866b5eb555736 (patch)
treed5832d9b81c28c7bda3ee673127fd10b368f5521
parent44042027135e894f6dae64977d7c3306d0472a35 (diff)
downloadupstream-1abe203fb6241f69763dfd16783866b5eb555736.tar.gz
upstream-1abe203fb6241f69763dfd16783866b5eb555736.tar.bz2
upstream-1abe203fb6241f69763dfd16783866b5eb555736.zip
[package] wpa_supplicant: fix two syntax errors in wpa_supplicant.sh (#6504)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19128 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/wpa_supplicant/files/wpa_supplicant.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/wpa_supplicant/files/wpa_supplicant.sh b/package/wpa_supplicant/files/wpa_supplicant.sh
index 40e8ff55b2..ea10b386e1 100644
--- a/package/wpa_supplicant/files/wpa_supplicant.sh
+++ b/package/wpa_supplicant/files/wpa_supplicant.sh
@@ -22,7 +22,7 @@ wpa_supplicant_setup_vif() {
local zidx
zidx=$(($idx - 1))
config_get ckey "$vif" "key${idx}"
- if [ -n "$ckey" ] && \
+ [ -n "$ckey" ] && \
append "wep_key${zidx}" "wep_key${zidx}=$(prepare_key_wep "$ckey")"
done
wep_tx_keyidx="wep_tx_keyidx=$((key - 1))"
@@ -111,6 +111,6 @@ network={
$wep_tx_keyidx
}
EOF
- [ -z "$proto" -a "$key_mgmt" != "NONE" ] ||
+ [ -z "$proto" -a "$key_mgmt" != "NONE" ] || \
wpa_supplicant ${bridge:+ -b $bridge} -B -P "/var/run/wifi-${ifname}.pid" -D ${driver:-wext} -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf
}