hostapd: fix anqp_3gpp_cell_net list delimiter
authorSarah Maedel <git@tbspace.de>
Wed, 28 Aug 2024 09:27:05 +0000 (11:27 +0200)
committerDavid Bauer <mail@david-bauer.net>
Wed, 28 Aug 2024 09:57:23 +0000 (11:57 +0200)
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@tbspace.de>
package/network/config/wifi-scripts/files/lib/netifd/hostapd.sh

index 40266db0655dab73f0cfbc56e776b88c767e3b85..232f9021b9c3dda04506b893728d5534699f9260 100644 (file)
@@ -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
 }