From: Martin Böh Date: Sat, 31 Oct 2020 20:03:04 +0000 (+0100) Subject: luci-base: fix syntax error in hostapd features X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=6e4e1321a2f0e27dd2f79ead0e434a8aee807d67;p=project%2Fluci.git luci-base: fix syntax error in hostapd features Signed-off-by: Martin Böh --- diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index 8ac6616707..97709e281d 100755 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ b/modules/luci-base/root/usr/libexec/rpcd/luci @@ -219,7 +219,7 @@ local methods = { rv.cabundle = fs.access("/etc/ssl/certs/ca-certificates.crt") rv.relayd = fs.access("/usr/sbin/relayd") - local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192", "wep", "wps } + local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192", "wep", "wps" } if fs.access("/usr/sbin/hostapd") then rv.hostapd = { cli = fs.access("/usr/sbin/hostapd_cli") }