diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-02 12:13:38 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-02 12:13:38 +0200 |
commit | 9c2263366b4aa4641af70357e70458f54e446407 (patch) | |
tree | 5413ae982e5178284a932fa6d7808912fcbe3256 /thirdparty/mbedtls/library/error.c | |
parent | 109fafc7a40945e17639afd31a78185f84b4bb66 (diff) | |
parent | 4ac1f9c08a0e40c01f2b7024de51ecd23a68eec3 (diff) | |
download | redot-engine-9c2263366b4aa4641af70357e70458f54e446407.tar.gz |
Merge pull request #96385 from Faless/mbedtls/3.6.1
[mbedTLS] Update to 3.6.1
Diffstat (limited to 'thirdparty/mbedtls/library/error.c')
-rw-r--r-- | thirdparty/mbedtls/library/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/mbedtls/library/error.c b/thirdparty/mbedtls/library/error.c index 84b637aeb2..6ad7162ab5 100644 --- a/thirdparty/mbedtls/library/error.c +++ b/thirdparty/mbedtls/library/error.c @@ -418,7 +418,7 @@ const char *mbedtls_high_level_strerr(int error_code) case -(MBEDTLS_ERR_SSL_BAD_CERTIFICATE): return( "SSL - Processing of the Certificate handshake message failed" ); case -(MBEDTLS_ERR_SSL_RECEIVED_NEW_SESSION_TICKET): - return( "SSL - * Received NewSessionTicket Post Handshake Message. This error code is experimental and may be changed or removed without notice" ); + return( "SSL - A TLS 1.3 NewSessionTicket message has been received" ); case -(MBEDTLS_ERR_SSL_CANNOT_READ_EARLY_DATA): return( "SSL - Not possible to read early data" ); case -(MBEDTLS_ERR_SSL_RECEIVED_EARLY_DATA): |