1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Apply suggestions from code review

Two spelling fixes (changelog & a comment)

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
Dave Rodgman
2022-10-31 14:30:24 +00:00
committed by GitHub
parent 12f5c6b2bc
commit e8734d8a55
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
Bugfix Bugfix
* Fix TLS 1.3 session reumption fail. Fixes #6488. * Fix TLS 1.3 session resumption fail. Fixes #6488.
* Add configuration check to exclude TLS 1.3 optional authentication of * Add configuration check to exclude TLS 1.3 optional authentication of
client. client.

View File

@ -1030,7 +1030,7 @@ static int ssl_conf_check(const mbedtls_ssl_context *ssl)
ssl->conf->authmode == MBEDTLS_SSL_VERIFY_OPTIONAL ) ssl->conf->authmode == MBEDTLS_SSL_VERIFY_OPTIONAL )
{ {
MBEDTLS_SSL_DEBUG_MSG( MBEDTLS_SSL_DEBUG_MSG(
1, ( "Optional verfiy auth mode " 1, ( "Optional verify auth mode "
"is not available for TLS 1.3 client" ) ); "is not available for TLS 1.3 client" ) );
return( MBEDTLS_ERR_SSL_BAD_CONFIG ); return( MBEDTLS_ERR_SSL_BAD_CONFIG );
} }