projects
/
openwrt
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bda91d
)
mac80211: fix detecting VHT capabilities when generating the default config
author
Felix Fietkau
<nbd@nbd.name>
Wed, 2 Jun 2021 05:42:40 +0000
(07:42 +0200)
committer
Felix 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
patch
|
blob
|
history
diff --git
a/package/kernel/mac80211/files/lib/wifi/mac80211.sh
b/package/kernel/mac80211/files/lib/wifi/mac80211.sh
index 0763da8fd813e880f848bcd389d29a2387eeedde..f5d4f2e90a694d5e2d43b1d8d5fba61bebd39dee 100644
(file)
--- 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
}