diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-11-29 13:56:41 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-11-29 13:56:41 +0000 |
commit | f916333f1ebc34b73b46d124e98ef654feae45ab (patch) | |
tree | c7cac9418b1e356513bfcf9d5ea17d44b59df486 | |
parent | ac42d58d7c974b42dd434a2f7f327b390c929c63 (diff) |
mac80211: fix up wds sta mode after r18591
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18600 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index 91fdcf57c2..bc6cc1449a 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -125,7 +125,7 @@ enable_mac80211() { ;; sta) local wdsflag - [ "$wds" -gt 0 ] && wdsflag="wds on" + [ "$wds" -gt 0 ] && wdsflag="4addr on" iw phy "$phy" interface add "$ifname" type managed $wdsflag config_get_bool powersave "$vif" powersave 0 [ "$powersave" -gt 0 ] && powersave="on" || powersave="off" |