mirror of https://github.com/hak5/openwrt-owl.git
mac80211: fix ad-hoc basic/multicast rate regression from r43782
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43853owl
parent
5e6f099edb
commit
b898695bdd
|
@ -517,11 +517,11 @@ mac80211_setup_adhoc() {
|
||||||
|
|
||||||
brstr=
|
brstr=
|
||||||
for br in $basic_rate_list; do
|
for br in $basic_rate_list; do
|
||||||
hostapd_add_rate brstr "$br"
|
wpa_supplicant_add_rate brstr "$br"
|
||||||
done
|
done
|
||||||
|
|
||||||
mcval=
|
mcval=
|
||||||
[ -n "$mcast_rate" ] && hostapd_add_rate mcval "$mcast_rate"
|
[ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
|
||||||
|
|
||||||
case "$htmode" in
|
case "$htmode" in
|
||||||
VHT20|HT20) ibss_htmode=HT20;;
|
VHT20|HT20) ibss_htmode=HT20;;
|
||||||
|
|
Loading…
Reference in New Issue