mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-26 00:45:29 +00:00
Fix typo in documentation of ssl_parse_certificate_chain()
This commit is contained in:
parent
e9839c001b
commit
42de8f8a42
|
@ -6327,7 +6327,7 @@ static int ssl_parse_certificate_chain( mbedtls_ssl_context *ssl,
|
||||||
#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
|
#if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
|
||||||
ret = mbedtls_x509_crt_parse_der( chain, ssl->in_msg + i, n );
|
ret = mbedtls_x509_crt_parse_der( chain, ssl->in_msg + i, n );
|
||||||
#else
|
#else
|
||||||
/* If we don't need to store the CRT chani permanently, parse
|
/* If we don't need to store the CRT chain permanently, parse
|
||||||
* it in-place from the input buffer instead of making a copy. */
|
* it in-place from the input buffer instead of making a copy. */
|
||||||
ret = mbedtls_x509_crt_parse_der_nocopy( chain, ssl->in_msg + i, n );
|
ret = mbedtls_x509_crt_parse_der_nocopy( chain, ssl->in_msg + i, n );
|
||||||
#endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
|
#endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
|
||||||
|
|
Loading…
Reference in a new issue