summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-10-31 22:06:39 +0100
committerGitHub <noreply@github.com>2020-10-31 22:06:39 +0100
commitea61f5d72e07c1ea26fac2a10ef017aa8b9c769e (patch)
tree88174afcd97cf8d4674aa3bc4400e2010949a7a7
parentff9d8a25276ca34a8169ad9500edb11c1e1337ba (diff)
parent6e4e1321a2f0e27dd2f79ead0e434a8aee807d67 (diff)
Merge pull request #4560 from MartB/patch-1
luci-base: fix syntax error in hostapd features
-rwxr-xr-xmodules/luci-base/root/usr/libexec/rpcd/luci2
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") }