From a9095ba8e0e7a81c550bd909276a02472baf98ec Mon Sep 17 00:00:00 2001 From: Shreyas Sheth Date: Mon, 9 Jan 2023 11:57:30 +0530 Subject: [PATCH] esp_wifi: bugfix RSNXE related changes 1. Set AP rsnxe len generic 2. Set transition_disable value in wifi get config --- components/esp_wifi/lib | 2 +- components/wpa_supplicant/src/rsn_supp/wpa.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index d9b1611337d4..450b90924e28 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit d9b1611337d452ea825136be888f1744d874bd01 +Subproject commit 450b90924e28f4c5d055f1217605e8c1cb9b5836 diff --git a/components/wpa_supplicant/src/rsn_supp/wpa.c b/components/wpa_supplicant/src/rsn_supp/wpa.c index 066f982dc6ee..878e63d706cb 100644 --- a/components/wpa_supplicant/src/rsn_supp/wpa.c +++ b/components/wpa_supplicant/src/rsn_supp/wpa.c @@ -2407,7 +2407,7 @@ int wpa_set_bss(char *macddr, char * bssid, u8 pairwise_cipher, u8 group_cipher, if (res < 0) return -1; sm->assoc_wpa_ie_len = res; - res = wpa_gen_rsnxe(sm ,assoc_rsnxe, assoc_rsnxe_len); + res = wpa_gen_rsnxe(sm, assoc_rsnxe, assoc_rsnxe_len); if (res < 0) return -1; assoc_rsnxe_len = res;