diff options
author | John Crispin <john@openwrt.org> | 2015-11-24 18:28:19 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-11-24 18:28:19 +0000 |
commit | b816d6276dd4a4cbb057514c5556aebd65716867 (patch) | |
tree | 01cba1a50e31c0122d26df6843bfe695e4ca826d | |
parent | 8ef96b3e6f23de09c5db4bd33cdc5279ed84c457 (diff) | |
download | mtk-20170518-b816d6276dd4a4cbb057514c5556aebd65716867.zip mtk-20170518-b816d6276dd4a4cbb057514c5556aebd65716867.tar.gz mtk-20170518-b816d6276dd4a4cbb057514c5556aebd65716867.tar.bz2 |
authsae: Fix meshid in authsae config
The variable $mesh_id was never defined in authsae_start_interface and thus
the option meshid in $authsae_conf_file was always set to "".
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
SVN-Revision: 47613
-rw-r--r-- | package/network/services/authsae/files/lib/wifi/authsae.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/authsae/files/lib/wifi/authsae.sh b/package/network/services/authsae/files/lib/wifi/authsae.sh index d8c5598..6582a35 100644 --- a/package/network/services/authsae/files/lib/wifi/authsae.sh +++ b/package/network/services/authsae/files/lib/wifi/authsae.sh @@ -5,7 +5,7 @@ authsae_start_interface() { local authsae_conf_file="/var/run/authsae-$ifname.cfg" local ret=1 - json_get_vars mcast_rate + json_get_vars mcast_rate mesh_id set_default mcast_rate "12" case "$htmode" in |