[openwrt/openwrt] hostapd: fix processing mbssid config option
LEDE Commits
lede-commits at lists.infradead.org
Mon Dec 9 11:10:57 PST 2024
nbd pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/59dd9cddf9e72d1f9b4ff7e01ae32d2fa99259d9
commit 59dd9cddf9e72d1f9b4ff7e01ae32d2fa99259d9
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Mon Dec 9 19:19:46 2024 +0100
hostapd: fix processing mbssid config option
Do not strip the first character from the field name
Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
package/network/services/hostapd/files/hostapd.uc | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/network/services/hostapd/files/hostapd.uc b/package/network/services/hostapd/files/hostapd.uc
index c1db91e4d4..76a3d706f7 100644
--- a/package/network/services/hostapd/files/hostapd.uc
+++ b/package/network/services/hostapd/files/hostapd.uc
@@ -746,9 +746,10 @@ function iface_load_config(phy, radio, filename)
continue;
}
- if (val[0] == "#num_global_macaddr" ||
- val[0] == "mbssid")
+ if (val[0] == "#num_global_macaddr")
config[substr(val[0], 1)] = int(val[1]);
+ else if (val[0] == "mbssid")
+ config[val[0]] = int(val[1]);
push(config.radio.data, line);
}
More information about the lede-commits
mailing list