From: Joe Orton Date: Wed, 23 May 2018 07:13:57 +0000 (+0000) Subject: * modules/ssl/ssl_engine_config.c: Fix typos, but isn't this first TODO X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24e953db73367f1e582c5307a51865b569360867;p=apache * modules/ssl/ssl_engine_config.c: Fix typos, but isn't this first TODO actually done? git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1832078 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_config.c b/modules/ssl/ssl_engine_config.c index 425e455a57..2c39a83720 100644 --- a/modules/ssl/ssl_engine_config.c +++ b/modules/ssl/ssl_engine_config.c @@ -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";