mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-19 06:54:58 +01:00
hostapd: always strip "11" from hwmode value
SVN-Revision: 20363
This commit is contained in:
parent
4dd46dd8a4
commit
90c566f557
@ -119,7 +119,7 @@ hostapd_setup_vif() {
|
||||
config_get channel "$device" channel
|
||||
config_get hwmode "$device" hwmode
|
||||
case "$hwmode" in
|
||||
bg) hwmode=g;;
|
||||
*bg) hwmode=g;;
|
||||
esac
|
||||
[ "$channel" = auto ] && channel=
|
||||
[ -n "$channel" -a -z "$hwmode" ] && wifi_fixup_hwmode "$device"
|
||||
@ -127,7 +127,7 @@ hostapd_setup_vif() {
|
||||
ctrl_interface=/var/run/hostapd-$ifname
|
||||
driver=$driver
|
||||
interface=$ifname
|
||||
${hwmode:+hw_mode=$hwmode}
|
||||
${hwmode:+hw_mode=${hwmode#11}}
|
||||
${channel:+channel=$channel}
|
||||
$hostapd_cfg
|
||||
EOF
|
||||
|
Loading…
Reference in New Issue
Block a user