Skip to content

Commit

Permalink
Remove unnecessary code from disconnect handler
Browse files Browse the repository at this point in the history
  • Loading branch information
kapilkedawat committed Oct 4, 2022
1 parent 6729f87 commit 198a433
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions components/wpa_supplicant/esp_supplicant/src/esp_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ static void supplicant_sta_disconn_handler(void* arg, esp_event_base_t event_bas
int32_t event_id, void* event_data)
{
struct wpa_supplicant *wpa_s = &g_wpa_supp;
wifi_event_sta_disconnected_t *disconn = event_data;

#ifdef CONFIG_WPA_11KV_SUPPORT
wpas_rrm_reset(wpa_s);
Expand All @@ -244,10 +243,6 @@ static void supplicant_sta_disconn_handler(void* arg, esp_event_base_t event_bas
if (wpa_s->current_bss) {
wpa_s->current_bss = NULL;
}

if (disconn->reason != WIFI_REASON_ROAMING) {
clear_bssid_flag(wpa_s);
}
}

#ifdef CONFIG_IEEE80211R
Expand Down

0 comments on commit 198a433

Please sign in to comment.