summaryrefslogtreecommitdiffstats
path: root/modules/ssl/ssl_engine_config.c
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2018-05-23 09:13:57 +0200
committerJoe Orton <jorton@apache.org>2018-05-23 09:13:57 +0200
commit24e953db73367f1e582c5307a51865b569360867 (patch)
treef8347910f23ac4e194018566ea39440cedfecab8 /modules/ssl/ssl_engine_config.c
parent* Makefile.in (check-binaries): Split out binaries to separate targets (diff)
downloadapache2-24e953db73367f1e582c5307a51865b569360867.tar.xz
apache2-24e953db73367f1e582c5307a51865b569360867.zip
* 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
Diffstat (limited to '')
-rw-r--r--modules/ssl/ssl_engine_config.c4
1 files changed, 2 insertions, 2 deletions
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";