From 2b1ce908e94ff0290e4d1afe509e1482020df0f1 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 2 Jun 2021 07:42:40 +0200 Subject: [PATCH] mac80211: fix detecting VHT capabilities when generating the default config The colon does not directly follow the "VHT Capabilities" string Reported-by: John Thomson Signed-off-by: Felix Fietkau --- package/kernel/mac80211/files/lib/wifi/mac80211.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/kernel/mac80211/files/lib/wifi/mac80211.sh b/package/kernel/mac80211/files/lib/wifi/mac80211.sh index 8463ff20d5..d85226e344 100644 --- a/package/kernel/mac80211/files/lib/wifi/mac80211.sh +++ b/package/kernel/mac80211/files/lib/wifi/mac80211.sh @@ -92,7 +92,7 @@ $0 ~ "Capabilities:" { ht=1 } -$0 ~ "VHT Capabilities:" { +$0 ~ "VHT Capabilities" { vht=1 }