You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
430 B
12 lines
430 B
--- a/src/ap/sta_info.c
|
|
+++ b/src/ap/sta_info.c
|
|
@@ -121,7 +121,8 @@ void ap_free_sta(struct hostapd_data *ha
|
|
|
|
accounting_sta_stop(hapd, sta);
|
|
|
|
- hapd->drv.set_wds_sta(hapd, sta->addr, sta->aid, 0);
|
|
+ if (sta->flags & WLAN_STA_WDS)
|
|
+ hapd->drv.set_wds_sta(hapd, sta->addr, sta->aid, 0);
|
|
if (!ap_sta_in_other_bss(hapd, sta, WLAN_STA_ASSOC) &&
|
|
!(sta->flags & WLAN_STA_PREAUTH))
|
|
hapd->drv.sta_remove(hapd, sta->addr);
|
|
|