mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Correct comment on the configuration option in x509.c
In x509.c, the self-test code is dependent on MBEDTLS_CERTS_C and MBEDTLS_SHA256_C being enabled. At some point in the recent past that dependency was on MBEDTLS_SHA1_C but changed to SHA256, but the comment wasn't updated. This commit updates the comment. Signed-off-by: Simon Butcher <simon.butcher@arm.com>
This commit is contained in:
parent
14ba0ce43b
commit
5cc087945a
1 changed files with 1 additions and 1 deletions
|
|
@ -1063,7 +1063,7 @@ cleanup:
|
||||||
mbedtls_x509_crt_free( &clicert );
|
mbedtls_x509_crt_free( &clicert );
|
||||||
#else
|
#else
|
||||||
((void) verbose);
|
((void) verbose);
|
||||||
#endif /* MBEDTLS_CERTS_C && MBEDTLS_SHA1_C */
|
#endif /* MBEDTLS_CERTS_C && MBEDTLS_SHA256_C */
|
||||||
return( ret );
|
return( ret );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue