summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-03-09 17:35:59 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-03-09 17:35:59 +0000
commit7fdbfef92f29dc77b9ea5973d232b12266f703f4 (patch)
treeca782b94869d5e256dbb54244b8149ecc98eec8c /package
parent26e745e736534b1fed3827e49675c053da545a89 (diff)
downloadmaster-31e0f0ae-7fdbfef92f29dc77b9ea5973d232b12266f703f4.tar.gz
master-31e0f0ae-7fdbfef92f29dc77b9ea5973d232b12266f703f4.tar.bz2
master-31e0f0ae-7fdbfef92f29dc77b9ea5973d232b12266f703f4.zip
wpa_supplicant: fix bridging settings for wds
SVN-Revision: 20088
Diffstat (limited to 'package')
-rw-r--r--package/hostapd/files/wpa_supplicant.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/package/hostapd/files/wpa_supplicant.sh b/package/hostapd/files/wpa_supplicant.sh
index 97a00829da..a9f8ca1322 100644
--- a/package/hostapd/files/wpa_supplicant.sh
+++ b/package/hostapd/files/wpa_supplicant.sh
@@ -14,6 +14,14 @@ wpa_supplicant_setup_vif() {
config_get key "$vif" key
}
+ local net_cfg bridge
+ config_get bridge "$vif" bridge
+ [ -z "$bridge" ] && {
+ net_cfg="$(find_net_config "$vif")"
+ [ -z "$net_cfg" ] || bridge="$(bridge_interface "$net_cfg")"
+ config_set "$vif" bridge "$bridge"
+ }
+
case "$enc" in
*none*)
key_mgmt='NONE'