changelog: fixed typos

Signed-off-by: Valerio Setti <vsetti@baylibre.com>
This commit is contained in:
Valerio Setti 2023-01-09 17:21:17 +01:00
parent aad8dbd38d
commit ea19d2db73
3 changed files with 3 additions and 3 deletions

View File

@ -7,4 +7,4 @@ Bugfix
New deprecations
* mbedtls_x509write_crt_set_serial() is now being deprecated in favor of
mbedtls_x509write_crt_set_serial_new(). The goal here is to remove any
direct dependency of X509 from BIGNUM_C.
direct dependency of X509 on BIGNUM_C.

View File

@ -169,4 +169,4 @@ X509 String to Names #6 (Escape at end)
mbedtls_x509_string_to_names:"C=NL, O=Offspark\":"":MBEDTLS_ERR_X509_INVALID_NAME
Check max serial length
x509_set_serial_check:
x509_set_serial_check:

View File

@ -577,7 +577,7 @@ void x509_set_serial_check()
memset(invalid_serial, 0x01, sizeof(invalid_serial));
#if defined(MBEDTLS_BIGNUM_C) && !defined(MBEDTLS_DEPRECATED_REMOVED)
#if defined(MBEDTLS_TEST_DEPRECATED) && defined(MBEDTLS_BIGNUM_C)
mbedtls_mpi serial_mpi;
mbedtls_mpi_init(&serial_mpi);