From 462eb3bf1fee231bcf7ec78a80ba432ccb7626b5 Mon Sep 17 00:00:00 2001 From: Andres Amaya Garcia Date: Wed, 30 Aug 2017 11:26:50 +0100 Subject: [PATCH] Fix doxygen warnings in x509_ocsp.h Fix copy-paste errors in doxygen documentation that were causing warnings due to variable names not matching the function definition. --- include/mbedtls/x509_ocsp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mbedtls/x509_ocsp.h b/include/mbedtls/x509_ocsp.h index b4f29b1baa..62a0aaebd2 100644 --- a/include/mbedtls/x509_ocsp.h +++ b/include/mbedtls/x509_ocsp.h @@ -130,7 +130,7 @@ typedef struct mbedtls_x509_ocsp_response { /** * \brief Initialize an OCSP response container * - * \param crt OCSP response to initialize + * \param resp OCSP response to initialize */ void mbedtls_x509_ocsp_response_init( mbedtls_x509_ocsp_response *resp ); @@ -147,7 +147,7 @@ void mbedtls_x509_ocsp_response_free( mbedtls_x509_ocsp_response *resp ); * \param buf Buffer to write to * \param size Maximum size of buffer * \param prefix A line prefix - * \param crt The X509 certificate to represent + * \param resp The OCSP response to represent * * \return The length of the string written (not including the * terminated nul byte), or a negative error code.