From 5091bec3ea5b29aa0a745bdd17438178f842175f Mon Sep 17 00:00:00 2001 From: Janos Follath Date: Wed, 8 May 2019 15:23:08 +0100 Subject: [PATCH] Fix doxygen for new x509 structures The documentation for some new structures and members was only a C style comment and wasn't picked up by doxygen. This commit adds the missing asterisks. --- include/mbedtls/x509_crt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mbedtls/x509_crt.h b/include/mbedtls/x509_crt.h index acaafbe9f9..c93fefa22f 100644 --- a/include/mbedtls/x509_crt.h +++ b/include/mbedtls/x509_crt.h @@ -99,7 +99,7 @@ typedef struct mbedtls_x509_crt } mbedtls_x509_crt; -/* +/** * From RFC 5280 section 4.2.1.6: * OtherName ::= SEQUENCE { * type-id OBJECT IDENTIFIER, @@ -110,7 +110,7 @@ typedef struct mbedtls_x509_san_other_name mbedtls_x509_buf type_id; /**< The type id. */ union { - /* + /** * From RFC 4108 section 5: * HardwareModuleName ::= SEQUENCE { * hwType OBJECT IDENTIFIER, @@ -122,7 +122,7 @@ typedef struct mbedtls_x509_san_other_name } mbedtls_x509_san_other_name; -/* +/** * A structure for holding the parsed Subject Alternative Name, according to type */ typedef struct mbedtls_x509_subject_alternative_name