From 0f3b2ae180d6266d63485dfce48f7eb8bd7ddf9c Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 28 Sep 2021 15:25:51 -0700 Subject: [PATCH] unit: update test-eapol with GTK API change --- unit/test-eapol.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unit/test-eapol.c b/unit/test-eapol.c index 470e0e9f..e1b6c96e 100644 --- a/unit/test-eapol.c +++ b/unit/test-eapol.c @@ -1940,6 +1940,7 @@ static void eapol_wpa2_handshake_test(const void *data) frame = eapol_create_gtk_2_of_2(EAPOL_PROTOCOL_VERSION_2004, EAPOL_KEY_DESCRIPTOR_VERSION_HMAC_SHA1_AES, eapol_key_test_12.key_replay_counter, + 0, NULL, false, 0, 16); assert(frame); assert(eapol_calculate_mic(IE_RSN_AKM_SUITE_PSK, ptk, frame, @@ -2061,8 +2062,8 @@ static void eapol_wpa_handshake_test(const void *data) frame = eapol_create_gtk_2_of_2(EAPOL_PROTOCOL_VERSION_2004, EAPOL_KEY_DESCRIPTOR_VERSION_HMAC_MD5_ARC4, - eapol_key_test_18.key_replay_counter, true, - gtk_step1->wpa_key_id, 16); + eapol_key_test_18.key_replay_counter, 0, NULL, + true, gtk_step1->wpa_key_id, 16); assert(frame); assert(eapol_calculate_mic(IE_RSN_AKM_SUITE_PSK, ptk, frame, mic, 16));