You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2018/05/23 07:13:57 UTC

svn commit: r1832078 - /httpd/httpd/trunk/modules/ssl/ssl_engine_config.c

Author: jorton
Date: Wed May 23 07:13:57 2018
New Revision: 1832078

URL: http://svn.apache.org/viewvc?rev=1832078&view=rev
Log:
* modules/ssl/ssl_engine_config.c: Fix typos, but isn't this first TODO
  actually done?

Modified:
    httpd/httpd/trunk/modules/ssl/ssl_engine_config.c

Modified: httpd/httpd/trunk/modules/ssl/ssl_engine_config.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/ssl_engine_config.c?rev=1832078&r1=1832077&r2=1832078&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ssl/ssl_engine_config.c (original)
+++ httpd/httpd/trunk/modules/ssl/ssl_engine_config.c Wed May 23 07:13:57 2018
@@ -2342,7 +2342,7 @@ static void val_str_dump(apr_file_t *out
                          apr_pool_t *p, const char *indent, const char **psep)
 {
     if (val) {
-        /* TODO: JSON quite string val */
+        /* TODO: JSON quote string val */
         apr_file_printf(out, "%s\n%s\"%s\": \"%s\"", *psep, indent, key, json_quote(val, p));
         *psep = ", ";
     }
@@ -2487,7 +2487,7 @@ static const char *protocol_str(ssl_prot
     }
     else {
         /* icing: I think it is nuts that we define our own IETF protocol constants
-         * only whent the linked *SSL lib supports them. */
+         * only when the linked *SSL lib supports them. */
         apr_array_header_t *names = apr_array_make(p, 5, sizeof(const char*));
         if ((1<<4) & proto) {
             APR_ARRAY_PUSH(names, const char*) = "+TLSv1.2";