From: Jouni Malinen Date: Tue, 2 Jun 2020 20:35:17 +0000 (+0300) Subject: tests: Fix eapol-supp fuzzing tool build X-Git-Tag: hostap_2_10~1222 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3f894ad005e7978ae5c30f03670bece7b7c4f22;p=thirdparty%2Fhostap.git tests: Fix eapol-supp fuzzing tool build Boolean handling was changed to use "true" instead of "TRUE", but this location was missed. Signed-off-by: Jouni Malinen --- diff --git a/tests/fuzzing/eapol-supp/eapol-supp.c b/tests/fuzzing/eapol-supp/eapol-supp.c index 6f0b8cba8..94e0147ad 100644 --- a/tests/fuzzing/eapol-supp/eapol-supp.c +++ b/tests/fuzzing/eapol-supp/eapol-supp.c @@ -33,7 +33,7 @@ static void test_send_eapol(void *eloop_data, void *user_ctx) wpa_hexdump(MSG_MSGDUMP, "fuzzer - EAPOL", ctx->data, ctx->data_len); - eapol_sm_notify_portEnabled(ctx->eapol, TRUE); + eapol_sm_notify_portEnabled(ctx->eapol, true); wpa_sm_set_param(ctx->wpa, WPA_PARAM_PROTO, WPA_PROTO_RSN); wpa_sm_set_param(ctx->wpa, WPA_PARAM_RSN_ENABLED, 1);