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 <jouni@codeaurora.org>
This commit is contained in:
Jouni Malinen 2020-06-02 23:35:17 +03:00 committed by Jouni Malinen
parent fca9ef3fee
commit c3f894ad00

View file

@ -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);