mirror of https://github.com/hak5/openwrt.git
hostapd: fix deletion of wds sta interfaces in AP mode
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39765lede-17.01
parent
802d17ceaf
commit
a9d4cd35fc
|
@ -0,0 +1,13 @@
|
|||
--- a/src/drivers/driver_nl80211.c
|
||||
+++ b/src/drivers/driver_nl80211.c
|
||||
@@ -9083,8 +9083,8 @@ static int i802_set_wds_sta(void *priv,
|
||||
name);
|
||||
|
||||
i802_set_sta_vlan(priv, addr, bss->ifname, 0);
|
||||
- return wpa_driver_nl80211_if_remove(priv, WPA_IF_AP_VLAN,
|
||||
- name);
|
||||
+ nl80211_remove_iface(drv, if_nametoindex(name));
|
||||
+ return 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue