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

Prevent warnings in ssl_check_cert_usage() if keyUsage checks are off

This commit is contained in:
Paul Bakker
2014-04-09 16:39:35 +02:00
parent 59366213cb
commit a77de8c841

View File

@ -4769,6 +4769,12 @@ int ssl_check_cert_usage( const x509_crt *cert,
const ssl_ciphersuite_t *ciphersuite,
int cert_endpoint )
{
#if !defined(POLARSSL_X509_CHECK_KEY_USAGE)
((void) cert);
((void) ciphersuite);
((void) cert_endpoint);
#endif
#if defined(POLARSSL_X509_CHECK_KEY_USAGE)
int usage = 0;
#endif