diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-11-29 13:56:41 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-11-29 13:56:41 +0000 |
commit | 7d599ee46ce3ea41eb49e8385ff921c1933dfa52 (patch) | |
tree | 0bf18f5e8d58b6c0c17ec808ec5a97eb95ddb3ef /package | |
parent | cb85dcb1a8fd1c63e680b3fa0a768b017081af20 (diff) | |
download | upstream-7d599ee46ce3ea41eb49e8385ff921c1933dfa52.tar.gz upstream-7d599ee46ce3ea41eb49e8385ff921c1933dfa52.tar.bz2 upstream-7d599ee46ce3ea41eb49e8385ff921c1933dfa52.zip |
mac80211: fix up wds sta mode after r18591
SVN-Revision: 18600
Diffstat (limited to 'package')
-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" |