mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-01 13:20:30 +00:00
Fix the wrong debug _message function to _ret
Signed-off-by: Xiaokang Qian <xiaokang.qian@arm.com>
This commit is contained in:
parent
09c3cccf97
commit
49f39c1e91
@ -1647,8 +1647,8 @@ static int ssl_tls13_parse_client_hello(mbedtls_ssl_context *ssl,
|
|||||||
ret = mbedtls_ssl_parse_sig_alg_ext(
|
ret = mbedtls_ssl_parse_sig_alg_ext(
|
||||||
ssl, p, extension_data_end);
|
ssl, p, extension_data_end);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
MBEDTLS_SSL_DEBUG_MSG(
|
MBEDTLS_SSL_DEBUG_RET(
|
||||||
1, ("mbedtls_ssl_parse_sig_alg_ext ( %d )", ret));
|
1, "mbedtls_ssl_parse_sig_alg_ext", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user