summaryrefslogtreecommitdiffstats
path: root/package/hostapd
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-09 21:16:32 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-09 21:16:32 +0000
commit70de34b67dfb3b00bc1f87902ab28f7c2f5cfe8e (patch)
treef79af2b4b35688715b8a153c479b2c9175f181b9 /package/hostapd
parentfa5b4cae09e75f666d72ae74b944181b47e5e704 (diff)
hostapd: fix setting the station vlan for wds stations on reauthentication
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20103 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd')
-rw-r--r--package/hostapd/patches/350-wds_fix.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/hostapd/patches/350-wds_fix.patch b/package/hostapd/patches/350-wds_fix.patch
new file mode 100644
index 000000000..a292dddaa
--- /dev/null
+++ b/package/hostapd/patches/350-wds_fix.patch
@@ -0,0 +1,16 @@
+--- a/src/drivers/driver_nl80211.c
++++ b/src/drivers/driver_nl80211.c
+@@ -4435,9 +4435,11 @@ static int i802_set_wds_sta(void *priv,
+ wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
+ " aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
+ if (val) {
+- if (nl80211_create_iface(drv, name, NL80211_IFTYPE_AP_VLAN,
++ if (!if_nametoindex(name)) {
++ if (nl80211_create_iface(drv, name, NL80211_IFTYPE_AP_VLAN,
+ NULL, 1) < 0)
+- return -1;
++ return -1;
++ }
+ linux_set_iface_flags(drv->ioctl_sock, name, 1);
+ return i802_set_sta_vlan(priv, addr, name, 0);
+ } else {