mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 10:05:40 +01:00
Add missing compile-time guard around CID API in ssl_server2
This commit is contained in:
parent
7ba3568318
commit
d23605d056
@ -3185,9 +3185,11 @@ data_exchange:
|
|||||||
}
|
}
|
||||||
#endif /* MBEDTLS_SSL_RENEGOTIATION */
|
#endif /* MBEDTLS_SSL_RENEGOTIATION */
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_SSL_CID)
|
||||||
ret = report_cid_usage( &ssl, "after renegotiation" );
|
ret = report_cid_usage( &ssl, "after renegotiation" );
|
||||||
if( ret != 0 )
|
if( ret != 0 )
|
||||||
goto exit;
|
goto exit;
|
||||||
|
#endif /* MBEDTLS_SSL_CID */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 7. Write the 200 Response
|
* 7. Write the 200 Response
|
||||||
|
Loading…
Reference in New Issue
Block a user