Skip to content
Snippets Groups Projects
Commit 90fc200a authored by Hauke Mehrtens's avatar Hauke Mehrtens
Browse files

In wifi_fixup_hwmode the value 11bg for hwmode was not transfered to bg.

SVN-Revision: 15180
parent 229035ba
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,7 @@ wifi_fixup_hwmode() { ...@@ -42,6 +42,7 @@ wifi_fixup_hwmode() {
config_get channel "$device" channel config_get channel "$device" channel
config_get hwmode "$device" hwmode config_get hwmode "$device" hwmode
case "$hwmode" in case "$hwmode" in
11bg) hwmode=bg;;
11a) hwmode=a;; 11a) hwmode=a;;
11b) hwmode=b;; 11b) hwmode=b;;
11g) hwmode=g;; 11g) hwmode=g;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment