diff options
author | Martin Böh <mart.b@outlook.de> | 2020-10-31 21:03:04 +0100 |
---|---|---|
committer | MartB <mart.b@outlook.de> | 2020-10-31 21:07:16 +0100 |
commit | 6e4e1321a2f0e27dd2f79ead0e434a8aee807d67 (patch) | |
tree | 5717beccd985aacc951e01787197b223b81e241e /modules/luci-base | |
parent | ce3402a4530e06b1b5479e56caf9b8bb3a07dc15 (diff) |
luci-base: fix syntax error in hostapd features
Signed-off-by: Martin Böh <mart.b@outlook.de>
Diffstat (limited to 'modules/luci-base')
-rwxr-xr-x | modules/luci-base/root/usr/libexec/rpcd/luci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci index 8ac661670..97709e281 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") } |