mac80211: fix basic rate list processing in ad-hoc mode
authorFelix Fietkau <nbd@openwrt.org>
Sun, 2 Feb 2014 14:25:09 +0000 (14:25 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 2 Feb 2014 14:25:09 +0000 (14:25 +0000)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39450

package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh

index 2f369d65def25ba049ced79dde36e572fccda797..c98807f3cf2bd65e23b0b7362c716e99c4029cc3 100644 (file)
@@ -241,7 +241,7 @@ mac80211_setup_supplicant() {
 }
 
 mac80211_setup_adhoc() {
-       json_get_vars bssid ssid basic_rate key mcast_rate
+       json_get_vars bssid ssid key mcast_rate
 
        keyspec=
        [ "$auth_type" == "wep" ] && {
@@ -266,7 +266,7 @@ mac80211_setup_adhoc() {
        }
 
        brstr=
-       for br in $basic_rate; do
+       for br in $basic_rate_list; do
                hostapd_add_rate brstr "$br"
        done
 
@@ -352,6 +352,7 @@ drv_mac80211_setup() {
                txpower antenna_gain \
                rxantenna txantenna \
                frag rts beacon_int
+       json_get_values basic_rate_list basic_rate
        json_select ..
 
        find_phy || {