mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
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:
parent
d73299136e
commit
74efc5477c
@ -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(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user