mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-24 12:55:12 +00:00
Fix typos in debug message and comment in ssl-tls.c
This commit is contained in:
parent
7c48dd11db
commit
c573ac33dd
|
@ -4331,7 +4331,7 @@ int mbedtls_ssl_read_record( mbedtls_ssl_context *ssl,
|
||||||
|
|
||||||
if( ret != 0 )
|
if( ret != 0 )
|
||||||
{
|
{
|
||||||
MBEDTLS_SSL_DEBUG_RET( 1, ( "mbedtls_ssl_read_record_layer" ), ret );
|
MBEDTLS_SSL_DEBUG_RET( 1, ( "ssl_get_next_record" ), ret );
|
||||||
return( ret );
|
return( ret );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7725,7 +7725,7 @@ int mbedtls_ssl_check_pending( const mbedtls_ssl_context *ssl )
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* In all other cases, the rest of the message can be dropped.
|
* In all other cases, the rest of the message can be dropped.
|
||||||
* As in ssl_read_record_layer, this needs to be adapted if
|
* As in ssl_get_next_record, this needs to be adapted if
|
||||||
* we implement support for multiple alerts in single records.
|
* we implement support for multiple alerts in single records.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue