diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-12-03 09:02:58 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-12-03 09:02:58 +0000 |
commit | 603c532eedd4788369398f5204fdc1c03b48c89a (patch) | |
tree | 8b4eb841ec57cae064cff27738b99ec03ca3ea80 /package | |
parent | 6e0fafd816cd4e376de61ddf5344ce4d7f37205e (diff) | |
download | upstream-603c532eedd4788369398f5204fdc1c03b48c89a.tar.gz upstream-603c532eedd4788369398f5204fdc1c03b48c89a.tar.bz2 upstream-603c532eedd4788369398f5204fdc1c03b48c89a.zip |
hostapd: fix maclist processing with netifd
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 38991
Diffstat (limited to 'package')
-rw-r--r-- | package/network/services/hostapd/files/netifd.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/network/services/hostapd/files/netifd.sh b/package/network/services/hostapd/files/netifd.sh index 020c41fd03..4879c044b2 100644 --- a/package/network/services/hostapd/files/netifd.sh +++ b/package/network/services/hostapd/files/netifd.sh @@ -308,7 +308,7 @@ hostapd_set_bss_options() { esac fi - _macfile="/var/run/hostapd-$phy-$ifname.maclist" + _macfile="/var/run/hostapd-$ifname.maclist" case "$macfilter" in allow) append bss_conf "macaddr_acl=1" "$N" @@ -324,7 +324,8 @@ hostapd_set_bss_options() { esac [ -n "$_macfile" ] && { - json_get_vars macfile maclist + json_get_vars macfile + json_get_values maclist maclist rm -f "$_macfile" ( |