From 5d9aeba8996f70fbcd652f03b712e6ed2eb61a3b Mon Sep 17 00:00:00 2001 From: Andrzej Kurek Date: Mon, 22 May 2023 15:16:05 -0400 Subject: [PATCH] Fix param documentation for mbedtls_x509_crt_parse_cn_inet_pton Signed-off-by: Andrzej Kurek --- include/mbedtls/x509.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mbedtls/x509.h b/include/mbedtls/x509.h index d7777c90a6..6e9ee88ec0 100644 --- a/include/mbedtls/x509.h +++ b/include/mbedtls/x509.h @@ -509,8 +509,8 @@ int mbedtls_x509_info_key_usage(char **buf, size_t *size, * 4-byte aligned if the result will be used as struct in_addr. * e.g. uint32_t dst[4] * - * \note \cn is parsed as an IPv6 address if string contains ':', - * else \cn is parsed as an IPv4 address. + * \note \p cn is parsed as an IPv6 address if string contains ':', + * else \p cn is parsed as an IPv4 address. * * \return Length of binary IP address; num bytes written to target. * \return \c 0 on failure to parse CN string as an IP address.