sslapitest: add cast to avoid compiler error

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22500)
This commit is contained in:
Pauli 2023-10-25 18:30:39 +11:00 committed by Matt Caswell
parent d73299136e
commit 74efc5477c

View File

@ -11156,7 +11156,7 @@ static int test_data_retry(void)
goto end;
for (i = 0; i < sizeof(inbuf); i++)
inbuf[i] = i;
inbuf[i] = (unsigned char)(0xff & i);
memset(outbuf, 0, sizeof(outbuf));
if (!TEST_true(create_ssl_ctx_pair(libctx, TLS_server_method(),