mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-15 12:31:20 +01:00
Make sure we will have lower case MAC addresses when doing WDS
SVN-Revision: 12259
This commit is contained in:
parent
a53aa71c83
commit
d7c8f38007
@ -24,7 +24,10 @@ scan_broadcom() {
|
||||
;;
|
||||
wds)
|
||||
config_get addr "$vif" bssid
|
||||
[ -z "$addr" ] || append wds "$addr"
|
||||
[ -z "$addr" ] || {
|
||||
addr=$(echo "$addr" | tr 'A-F' 'a-f')
|
||||
append wds "$addr"
|
||||
}
|
||||
;;
|
||||
monitor)
|
||||
mon=1
|
||||
|
Loading…
Reference in New Issue
Block a user