PASN: Fix fuzzing tester compilation after function prototype change

Addition of the new argument to handle_auth_pasn_1() forgot to update
testing code.

Fixes: 8f21cdf9d7 ("PASN: Add support to reject PASN auth 1 based on user input")
Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
Jouni Malinen 2024-09-12 21:26:03 +03:00 committed by Jouni Malinen
parent 61960e6c6b
commit c402848c50

View file

@ -74,7 +74,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
wpa_printf(MSG_DEBUG, "TESTING: Try to parse as PASN Auth 1");
if (handle_auth_pasn_1(&pasn, own_addr, bssid,
(const struct ieee80211_mgmt *) data, size))
(const struct ieee80211_mgmt *) data, size,
false))
wpa_printf(MSG_ERROR, "handle_auth_pasn_1 failed");
wpa_printf(MSG_DEBUG, "TESTING: Try to parse as PASN Auth 3");