diff options
author | John Crispin <john@phrozen.org> | 2021-04-06 13:24:43 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2021-11-23 18:30:04 +0100 |
commit | e480a0986eee9615724a5cdc9313c5855cd7afd2 (patch) | |
tree | e2142755c6abe23efd4212448b68df13d251f781 /package | |
parent | 46aa34ee0f55133c51d569282915d75ab322212a (diff) | |
download | upstream-e480a0986eee9615724a5cdc9313c5855cd7afd2.tar.gz upstream-e480a0986eee9615724a5cdc9313c5855cd7afd2.tar.bz2 upstream-e480a0986eee9615724a5cdc9313c5855cd7afd2.zip |
hostapd: fix civic location option
Signed-off-by: John Crispin <john@phrozen.org>
(cherry-picked from commit 937dd79e2a4457a316d67b3091f6da7d14a99168)
Diffstat (limited to 'package')
-rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index ce44065093..d4a7dd0a11 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -740,7 +740,7 @@ hostapd_set_bss_options() { append bss_conf "ftm_responder=1" "$N" [ "$stationary_ap" -eq "1" ] && append bss_conf "stationary_ap=1" "$N" [ -n "$lci" ] && append bss_conf "lci=$lci" "$N" - [ -n "$civic" ] && append bss_conf "lci=$civic" "$N" + [ -n "$civic" ] && append bss_conf "civic=$civic" "$N" } fi |