diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-03-09 21:16:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-03-09 21:16:32 +0000 |
commit | 875b9fc0aebf3b1f02ccf1fc5d304cb1416b9e6c (patch) | |
tree | c2dd7cfe71a79db105c143054a1c86263c67dc4a /package/hostapd/patches | |
parent | eaccbd3fb8da1c529823d4ed9a9a8f727a228e96 (diff) | |
download | upstream-875b9fc0aebf3b1f02ccf1fc5d304cb1416b9e6c.tar.gz upstream-875b9fc0aebf3b1f02ccf1fc5d304cb1416b9e6c.tar.bz2 upstream-875b9fc0aebf3b1f02ccf1fc5d304cb1416b9e6c.zip |
hostapd: fix setting the station vlan for wds stations on reauthentication
SVN-Revision: 20103
Diffstat (limited to 'package/hostapd/patches')
-rw-r--r-- | package/hostapd/patches/350-wds_fix.patch | 16 |
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 0000000000..a292dddaa2 --- /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 { |