Skip to content
Snippets Groups Projects
Commit d7c8f380 authored by Florian Fainelli's avatar Florian Fainelli
Browse files

Make sure we will have lower case MAC addresses when doing WDS

SVN-Revision: 12259
parent a53aa71c
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,10 @@ scan_broadcom() { ...@@ -24,7 +24,10 @@ scan_broadcom() {
;; ;;
wds) wds)
config_get addr "$vif" bssid config_get addr "$vif" bssid
[ -z "$addr" ] || append wds "$addr" [ -z "$addr" ] || {
addr=$(echo "$addr" | tr 'A-F' 'a-f')
append wds "$addr"
}
;; ;;
monitor) monitor)
mon=1 mon=1
......
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