- Updated to handle x509parse_crtfile() positive return values

This commit is contained in:
Paul Bakker 2012-05-16 08:21:05 +00:00
parent f6198c1513
commit 4248823f43
2 changed files with 4 additions and 4 deletions

View file

@ -258,13 +258,13 @@ int main( int argc, char *argv[] )
printf("POLARSSL_CERTS_C not defined.");
}
#endif
if( ret != 0 )
if( ret < 0 )
{
printf( " failed\n ! x509parse_crt returned -0x%x\n\n", -ret );
goto exit;
}
printf( " ok\n" );
printf( " ok (%d skipped)\n", ret );
/*
* 1.2. Load own certificate and private key

View file

@ -505,13 +505,13 @@ int main( int argc, char *argv[] )
printf("POLARSSL_CERTS_C not defined.");
}
#endif
if( ret != 0 )
if( ret < 0 )
{
printf( " failed\n ! x509parse_crt returned %d\n\n", ret );
goto exit;
}
printf( " ok\n" );
printf( " ok (%d skipped)\n", ret );
/*
* 1.2. Load own certificate and private key