aboutsummaryrefslogtreecommitdiffstats
path: root/package/hostapd/files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-06-30 21:03:56 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-06-30 21:03:56 +0000
commit38caa87e55803c27607eb6f0017ea174907a3d1f (patch)
tree86a9ce322e11d7dcaa82e90eaab59af197d5cf92 /package/hostapd/files
parenteaf196a2b141df79770140ee641c76417d67ba14 (diff)
downloadupstream-38caa87e55803c27607eb6f0017ea174907a3d1f.tar.gz
upstream-38caa87e55803c27607eb6f0017ea174907a3d1f.tar.bz2
upstream-38caa87e55803c27607eb6f0017ea174907a3d1f.zip
[package] hostapd: allow *ccmp+tkip and *aes+tkip as well for cipher override
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21998 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/files')
-rw-r--r--package/hostapd/files/hostapd.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh
index a41c7678a7..9edb070814 100644
--- a/package/hostapd/files/hostapd.sh
+++ b/package/hostapd/files/hostapd.sh
@@ -38,7 +38,7 @@ hostapd_set_bss_options() {
# explicit override for crypto setting
case "$enc" in
- *tkip+aes|*tkip+ccmp) crypto="CCMP TKIP";;
+ *tkip+aes|*tkip+ccmp|*aes+tkip|*ccmp+tkip) crypto="CCMP TKIP";;
*aes|*ccmp) crypto="CCMP";;
*tkip) crypto="TKIP";;
esac