wpa_supplicant: fix beacon_int configuration option
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 18 Oct 2013 11:47:47 +0000 (11:47 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 18 Oct 2013 11:47:47 +0000 (11:47 +0000)
wpa_supplicant expects beacon_int instead of beacon_interval in its config
file.

Signed-off-by: Bruno Randolf <br1@einfach.org>
SVN-Revision: 38451

package/network/services/hostapd/files/wpa_supplicant.sh

index 0b5e1d391f61c4844e744a2ed79c56e9f65e3523..bd8680157a4aaca86325972fcb582a8bef0d1000 100644 (file)
@@ -119,13 +119,13 @@ wpa_supplicant_setup_vif() {
                ;;
        esac
 
-       local fixed_freq bssid1 beacon_interval brates mrate
+       local fixed_freq bssid1 beacon_int brates mrate
        config_get ifname "$vif" ifname
        config_get bridge "$vif" bridge
        config_get ssid "$vif" ssid
        config_get bssid "$vif" bssid
        bssid1=${bssid:+"bssid=$bssid"}
-       beacon_interval=${beacon_int:+"beacon_interval=$beacon_int"}
+       beacon_int=${beacon_int:+"beacon_int=$beacon_int"}
 
        local br brval brsub brstr
        [ -n "$basic_rate_list" ] && {
@@ -163,7 +163,7 @@ network={
        $proto
        $freq
        ${fixed:+"fixed_freq=1"}
-       $beacon_interval
+       $beacon_int
        $brates
        $mrate
        $ht_str