summaryrefslogtreecommitdiff
path: root/package/network/services/hostapd/files
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-12-03 09:02:58 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-12-03 09:02:58 +0000
commit286c7fb3f184e8f9d3645732d8b5d3db7f83c7a4 (patch)
tree7f42eb735065f1c809afe1a5ff03cb3ccc40bac7 /package/network/services/hostapd/files
parent8ca03cd7e0d9b0747162d3eb372e323a7736a71b (diff)
hostapd: fix maclist processing with netifd
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38991 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/services/hostapd/files')
-rw-r--r--package/network/services/hostapd/files/netifd.sh5
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"
(