summaryrefslogtreecommitdiff
path: root/modules/loggers
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2019-08-10 01:02:02 +0000
committerChristophe Jaillet <jailletc36@apache.org>2019-08-10 01:02:02 +0000
commit7998502889ba0e12002d0ec5af1b02e53825e13e (patch)
tree0b4c45532156f9cc4e4970d7363963f4f9277792 /modules/loggers
parentf83ddd0f5c86ad96a21df96c819a397e99987e93 (diff)
downloadhttpd-7998502889ba0e12002d0ec5af1b02e53825e13e.tar.gz
Fix to allow the logging of SSL_CIPHER variable (instead of SSL_COPHER)
(reported by eric-therond in GitHub issue #60) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1864834 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/loggers')
-rw-r--r--modules/loggers/mod_log_json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/loggers/mod_log_json.c b/modules/loggers/mod_log_json.c
index a6087b2065..021cd6cb30 100644
--- a/modules/loggers/mod_log_json.c
+++ b/modules/loggers/mod_log_json.c
@@ -108,7 +108,7 @@ log_json(request_rec *r, char *a)
r->pool, r->server, r->connection, r, "SSL_PROTOCOL")));
json_object_set_new_nocheck(tls, "cipher",
json_string(log_json_ssl_lookup(
- r->pool, r->server, r->connection, r, "SSL_COPHER")));
+ r->pool, r->server, r->connection, r, "SSL_CIPHER")));
json_object_set_new_nocheck(tls, "client_verify",
json_string(log_json_ssl_lookup(
r->pool, r->server, r->connection, r, "SSL_CLIENT_VERIFY")));