mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-30 05:04:14 +01:00
- Fixed compiler warnings
This commit is contained in:
parent
e9426948fa
commit
5a62408629
@ -4,11 +4,21 @@ BEGIN_HEADER
|
|||||||
|
|
||||||
int verify_none( void *data, x509_cert *crt, int certificate_depth, int preverify_ok )
|
int verify_none( void *data, x509_cert *crt, int certificate_depth, int preverify_ok )
|
||||||
{
|
{
|
||||||
|
((void) data);
|
||||||
|
((void) crt);
|
||||||
|
((void) certificate_depth);
|
||||||
|
((void) preverify_ok);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int verify_all( void *data, x509_cert *crt, int certificate_depth, int preverify_ok )
|
int verify_all( void *data, x509_cert *crt, int certificate_depth, int preverify_ok )
|
||||||
{
|
{
|
||||||
|
((void) data);
|
||||||
|
((void) crt);
|
||||||
|
((void) certificate_depth);
|
||||||
|
((void) preverify_ok);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user