mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
ssl: fix format specifier for size_t argument to BIO_printf
Fixes #14519 Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14521)
This commit is contained in:
parent
0413b7bb9c
commit
234261f3a1
@ -564,7 +564,7 @@ int tls1_setup_key_block(SSL *s)
|
||||
s->s3.tmp.key_block = p;
|
||||
|
||||
OSSL_TRACE_BEGIN(TLS) {
|
||||
BIO_printf(trc_out, "key block length: %ld\n", num);
|
||||
BIO_printf(trc_out, "key block length: %zu\n", num);
|
||||
BIO_printf(trc_out, "client random\n");
|
||||
BIO_dump_indent(trc_out, s->s3.client_random, SSL3_RANDOM_SIZE, 4);
|
||||
BIO_printf(trc_out, "server random\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user