summaryrefslogtreecommitdiffstats
path: root/package/mac80211/files
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-12-05 15:08:25 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-12-05 15:08:25 +0000
commita4827cab1f8e9e2e91fc8c6979bae74dee2dce3d (patch)
tree2d35fa47fdd131456939c268a64fcfd2849d3586 /package/mac80211/files
parent0f5ab576f2534cc2c48f1f2ab94784ab147699ec (diff)
[package] mac80211: fix wpa handling in sta mode
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18662 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/files')
-rw-r--r--package/mac80211/files/lib/wifi/mac80211.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh
index 7a3ed9a68..ef275729c 100644
--- a/package/mac80211/files/lib/wifi/mac80211.sh
+++ b/package/mac80211/files/lib/wifi/mac80211.sh
@@ -176,10 +176,10 @@ enable_mac80211() {
case "$enc" in
wep)
config_get keymgmt "$vif" keymgmt
- if [ -e "$keymgmt" ]; then
+ if [ -n "$keymgmt" ]; then
for idx in 1 2 3 4; do
local zidx
- zidx = idx - 1
+ zidx = $((idx - 1))
config_get key "$vif" "key${idx}"
if [ -n "$key" ]; then
append keystring "${zidx}:${key} "
@@ -187,7 +187,7 @@ enable_mac80211() {
done
fi
;;
- wpa)
+ *wpa*|*psk*)
config_get key "$vif" key
;;
esac
@@ -240,7 +240,7 @@ enable_mac80211() {
config_get bssid "$vif" bssid
case "$enc" in
wep)
- if [ -e "$keymgmt" ]; then
+ if [ -n "$keymgmt" ]; then
[ -n "$keystring" ] &&
iw dev "$ifname" connect "$ssid" ${fixed:+$freq} $bssid key "$keystring"
else
@@ -254,7 +254,7 @@ enable_mac80211() {
fi
fi
;;
- wpa*|psk*)
+ *wpa*|*psk*)
config_get key "$vif" key
if eval "type wpa_supplicant_setup_vif" 2>/dev/null >/dev/null; then
wpa_supplicant_setup_vif "$vif" wext || {