]> granicus.if.org Git - apache/commitdiff
* modules/ssl/ssl_engine_config.c: Fix typos, but isn't this first TODO
authorJoe Orton <jorton@apache.org>
Wed, 23 May 2018 07:13:57 +0000 (07:13 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 23 May 2018 07:13:57 +0000 (07:13 +0000)
  actually done?

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1832078 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_config.c

index 425e455a57d6750eee693ba7bbd7f7cbf36ce025..2c39a83720a0f6bd4bc212803dfdbc7a9116ea4c 100644 (file)
@@ -2342,7 +2342,7 @@ static void val_str_dump(apr_file_t *out, const char *key, const char *val,
                          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_proto_t proto, apr_pool_t *p)
     }
     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";