From 044800453514c6dd5674abe9f881e4e028048590 Mon Sep 17 00:00:00 2001 From: Ethan Looney Date: Tue, 28 Jul 2020 08:39:23 -0700 Subject: [PATCH] Added semicolons to two functions to fix doxygen issues and deleted ssl param and replaced it with ctx param --- doc/dox_comments/header_files/ssl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/dox_comments/header_files/ssl.h b/doc/dox_comments/header_files/ssl.h index 184e52fb1..58d20e557 100644 --- a/doc/dox_comments/header_files/ssl.h +++ b/doc/dox_comments/header_files/ssl.h @@ -2719,7 +2719,7 @@ WOLFSSL_API int wolfSSL_library_init(void); \sa wolfSSL_CTX_SetDevId \sa wolfSSL_CTX_GetDevId */ -WOLFSSL_API int wolfSSL_SetDevId(WOLFSSL* ssl, int devId) +WOLFSSL_API int wolfSSL_SetDevId(WOLFSSL* ssl, int devId); /*! \brief This function sets the Device Id at the WOLFSSL_CTX context level. @@ -2727,7 +2727,7 @@ WOLFSSL_API int wolfSSL_SetDevId(WOLFSSL* ssl, int devId) \return WOLFSSL_SUCCESS upon success. \return BAD_FUNC_ARG if ssl is NULL. - \param ssl pointer to a SSL object, created with wolfSSL_new(). + \param ctx pointer to the SSL context, created with wolfSSL_CTX_new(). \param devId ID to use with async hardware _Example_ @@ -2742,7 +2742,7 @@ WOLFSSL_API int wolfSSL_SetDevId(WOLFSSL* ssl, int devId) \sa wolfSSL_SetDevId \sa wolfSSL_CTX_GetDevId */ -WOLFSSL_API int wolfSSL_CTX_SetDevId(WOLFSSL_CTX* ctx, int devId) +WOLFSSL_API int wolfSSL_CTX_SetDevId(WOLFSSL_CTX* ctx, int devId); /*! \brief This function retrieves the Device Id.