tests: Fix pasn-init fuzz tester build
Change of the wpas_pasn_start() prototype did not update the fuzzer
tool.
Fixes: 309765eb66
("PASN: Use separate variables for BSSID and peer address")
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
4840b45a26
commit
f49b604555
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
|||
pasn.send_mgmt = pasn_send_mgmt;
|
||||
hwaddr_aton("02:00:00:00:00:00", own_addr);
|
||||
hwaddr_aton("02:00:00:00:03:00", bssid);
|
||||
if (wpas_pasn_start(&pasn, own_addr, bssid, WPA_KEY_MGMT_PASN,
|
||||
if (wpas_pasn_start(&pasn, own_addr, bssid, bssid, WPA_KEY_MGMT_PASN,
|
||||
WPA_CIPHER_CCMP, 19, 2412, NULL, 0, NULL, 0,
|
||||
NULL) < 0) {
|
||||
wpa_printf(MSG_ERROR, "wpas_pasn_start failed");
|
||||
|
|
Loading…
Reference in a new issue