mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-30 23:11:10 +00:00
Fixed warnings in case POLARSSL_PEM_C is not defined
This commit is contained in:
parent
9a97c5d894
commit
dce7fdcbc9
|
@ -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 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;
|
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 defined(POLARSSL_PEM_C)
|
||||||
if( buf_format == X509_FORMAT_PEM )
|
if( buf_format == X509_FORMAT_PEM )
|
||||||
{
|
{
|
||||||
|
int ret;
|
||||||
pem_context pem;
|
pem_context pem;
|
||||||
|
|
||||||
while( buflen > 0 )
|
while( buflen > 0 )
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
* END_DEPENDENCIES
|
* END_DEPENDENCIES
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* BEGIN_CASE */
|
/* BEGIN_CASE depends_on:POLARSSL_PEM_C */
|
||||||
void x509_csr_check( char *key_file, int md_type,
|
void x509_csr_check( char *key_file, int md_type,
|
||||||
char *cert_req_check_file )
|
char *cert_req_check_file )
|
||||||
{
|
{
|
||||||
|
@ -59,7 +59,7 @@ void x509_csr_check( char *key_file, int md_type,
|
||||||
}
|
}
|
||||||
/* END_CASE */
|
/* END_CASE */
|
||||||
|
|
||||||
/* BEGIN_CASE */
|
/* BEGIN_CASE depends_on:POLARSSL_PEM_C */
|
||||||
void x509_crt_check( char *subject_key_file, char *subject_pwd,
|
void x509_crt_check( char *subject_key_file, char *subject_pwd,
|
||||||
char *subject_name, char *issuer_key_file,
|
char *subject_name, char *issuer_key_file,
|
||||||
char *issuer_pwd, char *issuer_name,
|
char *issuer_pwd, char *issuer_name,
|
||||||
|
|
Loading…
Reference in a new issue