aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/hostapd/patches/420-indicate-features.patch
diff options
context:
space:
mode:
authorRobert Marko <robimarko@gmail.com>2022-06-12 13:22:33 +0200
committerChristian 'Ansuel' Marangi <ansuelsmth@gmail.com>2022-06-12 23:03:36 +0200
commitf03b20837bf821241acecaf94fc6a26ce49991be (patch)
tree7dce5b20ea039cfa665605316ee9349d5562c7c7 /package/network/services/hostapd/patches/420-indicate-features.patch
parentf4415f7635164ec07ddc22f56df93555804b5767 (diff)
downloadupstream-f03b20837bf821241acecaf94fc6a26ce49991be.tar.gz
upstream-f03b20837bf821241acecaf94fc6a26ce49991be.tar.bz2
upstream-f03b20837bf821241acecaf94fc6a26ce49991be.zip
hostapd: fix feature detection
Fix hostapd feature detection after the bump to 2022-05-08. getopt was not updated correctly after upstream added support for -q arg. This reenables feature detection so that LuCi can check for features like SAE, fast roaming etc. Fixes: c35ff1affe8f ("hostapd: update to 2022-05-08") Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'package/network/services/hostapd/patches/420-indicate-features.patch')
-rw-r--r--package/network/services/hostapd/patches/420-indicate-features.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/patches/420-indicate-features.patch b/package/network/services/hostapd/patches/420-indicate-features.patch
index 80d945ca16..12edb6bacc 100644
--- a/package/network/services/hostapd/patches/420-indicate-features.patch
+++ b/package/network/services/hostapd/patches/420-indicate-features.patch
@@ -14,7 +14,7 @@
wpa_supplicant_event_global = hostapd_wpa_event_global;
for (;;) {
- c = getopt(argc, argv, "b:Bde:f:hi:KP:sSTtu:vg:G:q");
-+ c = getopt(argc, argv, "b:Bde:f:hi:KP:sSTtu:vg:G:qv::");
++ c = getopt(argc, argv, "b:Bde:f:hi:KP:sSTtu:g:G:qv::");
if (c < 0)
break;
switch (c) {