mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Fix print format in a debug message
Signed-off-by: Andrzej Kurek <andrzej.kurek@arm.com>
This commit is contained in:
parent
ca35f5bed0
commit
755ddff25c
|
|
@ -1280,7 +1280,7 @@ read_record_header:
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
size_t handshake_len = MBEDTLS_GET_UINT24_BE( buf, 1 );
|
size_t handshake_len = MBEDTLS_GET_UINT24_BE( buf, 1 );
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "client hello v3, handshake len.: %d",
|
MBEDTLS_SSL_DEBUG_MSG( 3, ( "client hello v3, handshake len.: %u",
|
||||||
( unsigned ) handshake_len ) );
|
( unsigned ) handshake_len ) );
|
||||||
|
|
||||||
/* The record layer has a record size limit of 2^14 - 1 and
|
/* The record layer has a record size limit of 2^14 - 1 and
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue