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 )