summaryrefslogtreecommitdiff
path: root/package/network/services/hostapd/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-12-03 09:02:58 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-12-03 09:02:58 +0000
commit603c532eedd4788369398f5204fdc1c03b48c89a (patch)
tree8b4eb841ec57cae064cff27738b99ec03ca3ea80 /package/network/services/hostapd/files
parent6e0fafd816cd4e376de61ddf5344ce4d7f37205e (diff)
downloadmtk-20170518-603c532eedd4788369398f5204fdc1c03b48c89a.zip
mtk-20170518-603c532eedd4788369398f5204fdc1c03b48c89a.tar.gz
mtk-20170518-603c532eedd4788369398f5204fdc1c03b48c89a.tar.bz2
hostapd: fix maclist processing with netifd
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38991
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 020c41f..4879c04 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"
(