mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 12:55:38 +01:00
Adapt mbedtls_ssl_session_copy() to removal of peer_cert
field
This commit is contained in:
parent
cd90126ab3
commit
d5258faa29
@ -375,6 +375,8 @@ int mbedtls_ssl_session_copy( mbedtls_ssl_session *dst,
|
||||
memcpy( dst, src, sizeof( mbedtls_ssl_session ) );
|
||||
|
||||
#if defined(MBEDTLS_X509_CRT_PARSE_C)
|
||||
|
||||
#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
|
||||
if( src->peer_cert != NULL )
|
||||
{
|
||||
int ret;
|
||||
@ -393,8 +395,7 @@ int mbedtls_ssl_session_copy( mbedtls_ssl_session *dst,
|
||||
return( ret );
|
||||
}
|
||||
}
|
||||
|
||||
#if !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
|
||||
#else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
|
||||
if( src->peer_cert_digest != NULL )
|
||||
{
|
||||
dst->peer_cert_digest_len = src->peer_cert_digest_len;
|
||||
|
Loading…
Reference in New Issue
Block a user