Fixed warnings in case POLARSSL_PEM_C is not defined

This commit is contained in:
Paul Bakker 2013-09-15 17:15:26 +02:00
parent 9a97c5d894
commit dce7fdcbc9
2 changed files with 4 additions and 3 deletions

View File

@ -1331,7 +1331,7 @@ int x509parse_crt_der( x509_cert *chain, const unsigned char *buf, size_t buflen
*/
int x509parse_crt( x509_cert *chain, const unsigned char *buf, size_t buflen )
{
int ret, success = 0, first_error = 0, total_failed = 0;
int success = 0, first_error = 0, total_failed = 0;
int buf_format = X509_FORMAT_DER;
/*
@ -1355,6 +1355,7 @@ int x509parse_crt( x509_cert *chain, const unsigned char *buf, size_t buflen )
#if defined(POLARSSL_PEM_C)
if( buf_format == X509_FORMAT_PEM )
{
int ret;
pem_context pem;
while( buflen > 0 )

View File

@ -10,7 +10,7 @@
* END_DEPENDENCIES
*/
/* BEGIN_CASE */
/* BEGIN_CASE depends_on:POLARSSL_PEM_C */
void x509_csr_check( char *key_file, int md_type,
char *cert_req_check_file )
{
@ -59,7 +59,7 @@ void x509_csr_check( char *key_file, int md_type,
}
/* END_CASE */
/* BEGIN_CASE */
/* BEGIN_CASE depends_on:POLARSSL_PEM_C */
void x509_crt_check( char *subject_key_file, char *subject_pwd,
char *subject_name, char *issuer_key_file,
char *issuer_pwd, char *issuer_name,