From e2284d59bf68dbe74c1648d769cb0962eeb3cced Mon Sep 17 00:00:00 2001 From: Hideki Miyazaki Date: Wed, 5 May 2021 08:56:47 +0900 Subject: [PATCH] addressed review comments part2 --- src/ssl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ssl.c b/src/ssl.c index dd67deece..f9d5cefa6 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -56123,10 +56123,10 @@ int wolfSSL_CONF_CTX_finish(WOLFSSL_CONF_CTX* cctx) return WOLFSSL_SUCCESS; } /* - * This comment attempts to describe following definitions ans static functions - * that are used for wolfSSL_CONF_cmd() to handle command. + * The following definitions and static functions are used for + * wolfSSL_CONF_cmd() to handle command. * - * The following deinitions use for a part of conf_cmds_tbl[] contents. + * Definitions below are a part of conf_cmds_tbl[] contents. * WOLFSSL_CONF_FILE_CMDx represents command name in configuration file * WOLFSSL_CONF_CMDL_CMDx represents command name on command line * @@ -56136,7 +56136,7 @@ int wolfSSL_CONF_CTX_finish(WOLFSSL_CONF_CTX* cctx) * To add a new command handling: * 1. Add new #define to a section of WOLFSSL_CONF_FILE_CMD* and * WOLFSSL_CONF_CMDL_CMD* - * 2. Add new statci function after #define section, before + * 2. Add new static function after #define section, before * "typedef struct conf_cmd_tbl {" line * 3. Add new entry to conf_cmds_tbl[] by following other command entries */