1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-18 07:27:12 +02:00

[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
This commit is contained in:
jow 2010-06-30 21:03:56 +00:00
parent 5794fe5fc7
commit b49acf1288

View File

@ -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