Make ssl_check_cert_usage() dependent on POLARSSL_X509_CRT_PARSE_C

This commit is contained in:
Paul Bakker 2014-04-09 17:24:14 +02:00
parent 5c986f5244
commit d6ad8e949b

View file

@ -4765,6 +4765,7 @@ int ssl_curve_is_acceptable( const ssl_context *ssl, ecp_group_id grp_id )
} }
#endif #endif
#if defined(POLARSSL_X509_CRT_PARSE_C)
int ssl_check_cert_usage( const x509_crt *cert, int ssl_check_cert_usage( const x509_crt *cert,
const ssl_ciphersuite_t *ciphersuite, const ssl_ciphersuite_t *ciphersuite,
int cert_endpoint ) int cert_endpoint )
@ -4821,3 +4822,4 @@ int ssl_check_cert_usage( const x509_crt *cert,
return( 0 ); return( 0 );
} }
#endif /* POLARSSL_X509_CRT_PARSE_C */