mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-26 14:31:07 +00: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 ) );
|
memcpy( dst, src, sizeof( mbedtls_ssl_session ) );
|
||||||
|
|
||||||
#if defined(MBEDTLS_X509_CRT_PARSE_C)
|
#if defined(MBEDTLS_X509_CRT_PARSE_C)
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
|
||||||
if( src->peer_cert != NULL )
|
if( src->peer_cert != NULL )
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -393,8 +395,7 @@ int mbedtls_ssl_session_copy( mbedtls_ssl_session *dst,
|
||||||
return( ret );
|
return( ret );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
|
||||||
#if !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
|
|
||||||
if( src->peer_cert_digest != NULL )
|
if( src->peer_cert_digest != NULL )
|
||||||
{
|
{
|
||||||
dst->peer_cert_digest_len = src->peer_cert_digest_len;
|
dst->peer_cert_digest_len = src->peer_cert_digest_len;
|
||||||
|
|
Loading…
Reference in a new issue