mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Fix preauth_test build by updating add_pmkid/remove_pmkid callbacks
Commit c579312736
('Add
PMKSA-CACHE-ADDED/REMOVED events to wpa_supplicant') added new arguments
to these callback functions, but forgot to update the implementations in
preauth_test.c.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
0babae87ad
commit
aaa9c60bc2
@ -143,7 +143,7 @@ static int wpa_supplicant_mlme_setprotection(void *wpa_s, const u8 *addr,
|
||||
}
|
||||
|
||||
|
||||
static int wpa_supplicant_add_pmkid(void *wpa_s,
|
||||
static int wpa_supplicant_add_pmkid(void *wpa_s, void *network_ctx,
|
||||
const u8 *bssid, const u8 *pmkid)
|
||||
{
|
||||
printf("%s - not implemented\n", __func__);
|
||||
@ -151,7 +151,7 @@ static int wpa_supplicant_add_pmkid(void *wpa_s,
|
||||
}
|
||||
|
||||
|
||||
static int wpa_supplicant_remove_pmkid(void *wpa_s,
|
||||
static int wpa_supplicant_remove_pmkid(void *wpa_s, void *network_ctx,
|
||||
const u8 *bssid, const u8 *pmkid)
|
||||
{
|
||||
printf("%s - not implemented\n", __func__);
|
||||
|
Loading…
Reference in New Issue
Block a user