diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-12-19 11:56:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-12-19 11:56:49 +0000 |
commit | 58ed4ded0e5b729244cf36a3431050ff09b376fa (patch) | |
tree | dc2990d458df659294234de34a27f1dd484d1ab9 | |
parent | 6acfae9379d2c31cf1252a10013f5d832aa54fef (diff) | |
download | upstream-58ed4ded0e5b729244cf36a3431050ff09b376fa.tar.gz upstream-58ed4ded0e5b729244cf36a3431050ff09b376fa.tar.bz2 upstream-58ed4ded0e5b729244cf36a3431050ff09b376fa.zip |
hostapd: fix appending the iapp_interface variable to the config
Signed-off-by: Alexander Couzens <lynxis@c-base.org>
SVN-Revision: 24724
-rw-r--r-- | package/hostapd/files/hostapd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index 39f98f2c43..7d110dbf6d 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -137,7 +137,7 @@ hostapd_set_bss_options() { append "$var" "ssid=$ssid" "$N" [ -n "$bridge" ] && append "$var" "bridge=$bridge" "$N" [ -n "$ieee80211d" ] && append "$var" "ieee80211d=$ieee80211d" "$N" - [ -n "$iapp_interface" ] && append "$var" $(uci_get_state network "$iapp_interface" ifname "$iapp_interface") "$N" + [ -n "$iapp_interface" ] && append "$var" iapp_interface=$(uci_get_state network "$iapp_interface" ifname "$iapp_interface") "$N" if [ "$wpa" -ge "2" ] then |