fix(esp_wifi): Correct action frame type in send_mgmt_frame API

This commit is contained in:
Kapil Gupta
2024-04-19 19:40:07 +05:30
committed by Sarvesh Bodakhe
parent 3ba5cb9687
commit 5ce43f68f3
2 changed files with 2 additions and 2 deletions

View File

@@ -797,7 +797,7 @@ int wpa_drv_send_action(struct wpa_supplicant *wpa_s,
}
req->ifx = WIFI_IF_STA;
req->subtype = WLAN_FC_STYPE_ACTION;
req->subtype = (WLAN_FC_STYPE_ACTION << 4);
req->data_len = data_len;
os_memcpy(req->data, data, req->data_len);