From: Jo-Philipp Wich Date: Wed, 30 Jun 2010 21:03:56 +0000 (+0000) Subject: [package] hostapd: allow *ccmp+tkip and *aes+tkip as well for cipher override X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=7375e994b57b1a5b2f0dd92585dd2a0a25fb7572 [package] hostapd: allow *ccmp+tkip and *aes+tkip as well for cipher override SVN-Revision: 21998 --- 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