hostapd: allow *ccmp+tkip and *aes+tkip as well for cipher override
SVN-Revision: 21998
This commit is contained in:
parent
79c9adc19f
commit
f391ff4ec8
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ hostapd_set_bss_options() {
|
||||||
|
|
||||||
# explicit override for crypto setting
|
# explicit override for crypto setting
|
||||||
case "$enc" in
|
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";;
|
*aes|*ccmp) crypto="CCMP";;
|
||||||
*tkip) crypto="TKIP";;
|
*tkip) crypto="TKIP";;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue