Skip to content

Commit

Permalink
Merge branch 'bugfix/set_generic_len_for_rsnxe' into 'master'
Browse files Browse the repository at this point in the history
esp_wifi:bugfix set AP rsnxe ie len generic

See merge request espressif/esp-idf!21953
  • Loading branch information
jack0c committed Feb 7, 2023
2 parents 1c69929 + a9095ba commit 01f7277
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/wpa_supplicant/src/rsn_supp/wpa.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 01f7277

Please sign in to comment.