Browse Source

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

SVN-Revision: 15180
Hauke Mehrtens 16 years ago
parent
commit
90fc200a60
1 changed files with 1 additions and 0 deletions
  1. 1 0
      package/base-files/files/sbin/wifi

+ 1 - 0
package/base-files/files/sbin/wifi

@@ -42,6 +42,7 @@ wifi_fixup_hwmode() {
 	config_get channel "$device" channel
 	config_get hwmode "$device" hwmode
 	case "$hwmode" in
+		11bg) hwmode=bg;;
 		11a) hwmode=a;;
 		11b) hwmode=b;;
 		11g) hwmode=g;;