[openwrt/openwrt] hostapd: fix anqp_3gpp_cell_net list delimiter

LEDE Commits lede-commits at lists.infradead.org
Wed Aug 28 02:58:58 PDT 2024


blocktrron pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/8de185a176079e738984ab0fc89841bc2e613fb1

commit 8de185a176079e738984ab0fc89841bc2e613fb1
Author: Sarah Maedel <git at tbspace.de>
AuthorDate: Wed Aug 28 11:27:05 2024 +0200

    hostapd: fix anqp_3gpp_cell_net list delimiter
    
    This patch fixes the list delimiter between 3GPP networks
    passed to hostapd.
    
    > list iw_anqp_3gpp_cell_net '262,001'
    > list iw_anqp_3gpp_cell_net '262,002'
    
    When passing a list of "iw_anqp_3gpp_cell_net" parameters via UCI,
    hostapd would crash at startup:
    > daemon.err hostapd: Line 73: Invalid anqp_3gpp_cell_net: 262,001:262,002
    
    Using a semicolon as a delimiter, hostapd will start as expected.
    
    Signed-off-by: Sarah Maedel <git at tbspace.de>
---
 package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh b/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh
index 40266db065..232f9021b9 100644
--- a/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh
+++ b/package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh
@@ -437,7 +437,7 @@ append_iw_anqp_3gpp_cell_net() {
 	if [ -z "$iw_anqp_3gpp_cell_net_conf" ]; then
 		iw_anqp_3gpp_cell_net_conf="$1"
 	else
-		iw_anqp_3gpp_cell_net_conf="$iw_anqp_3gpp_cell_net_conf:$1"
+		iw_anqp_3gpp_cell_net_conf="$iw_anqp_3gpp_cell_net_conf;$1"
 	fi
 }
 




More information about the lede-commits mailing list