mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-09 00:55:28 +00:00
Fix format specifier in ssl_ciphersuite_match()
This commit is contained in:
parent
3c88c65426
commit
5c5efdfcf9
|
@ -929,7 +929,7 @@ static int ssl_ciphersuite_match( mbedtls_ssl_context *ssl, int suite_id,
|
|||
return( MBEDTLS_ERR_SSL_INTERNAL_ERROR );
|
||||
}
|
||||
|
||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "trying ciphersuite: %04x (%s)",
|
||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "trying ciphersuite: %#04x (%s)",
|
||||
suite_id, suite_info->name ) );
|
||||
|
||||
if( suite_info->min_minor_ver > ssl->minor_ver ||
|
||||
|
|
Loading…
Reference in a new issue