mac80211: fix detecting VHT capabilities when generating the default config
authorFelix Fietkau <nbd@nbd.name>
Wed, 2 Jun 2021 05:42:40 +0000 (07:42 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 2 Jun 2021 05:46:21 +0000 (07:46 +0200)
The colon does not directly follow the "VHT Capabilities" string

Reported-by: John Thomson <git@johnthomson.fastmail.com.au>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
package/kernel/mac80211/files/lib/wifi/mac80211.sh

index 0763da8fd813e880f848bcd389d29a2387eeedde..f5d4f2e90a694d5e2d43b1d8d5fba61bebd39dee 100644 (file)
@@ -92,7 +92,7 @@ $0 ~ "Capabilities:" {
        ht=1
 }
 
-$0 ~ "VHT Capabilities:" {
+$0 ~ "VHT Capabilities" {
        vht=1
 }