esp_wifi: bugfix wps connect to open AP

Set Mac address in correct field
This commit is contained in:
Shreyas Sheth 2022-09-20 10:49:48 +05:30
parent 9d8d118397
commit d12351f7a6

View File

@ -1404,6 +1404,7 @@ wifi_station_wps_init(void)
sm = gWpsSm;
esp_wifi_get_macaddr_internal(WIFI_IF_STA, sm->ownaddr);
os_memcpy(gWpaSm.own_addr, sm->ownaddr, ETH_ALEN);
sm->identity_len = WSC_ID_ENROLLEE_LEN;
os_memcpy(sm->identity, WSC_ID_ENROLLEE, sm->identity_len);