mirror of
https://github.com/apache/httpd.git
synced 2025-07-25 17:01:22 +00:00
escape ssl vars
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1927034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -914,7 +914,7 @@ static const char *log_ssl_var(request_rec *r, char *a)
|
|||||||
|
|
||||||
/* Any SSL module responsible for the connection/request will provide the value */
|
/* Any SSL module responsible for the connection/request will provide the value */
|
||||||
result = ap_ssl_var_lookup(r->pool, r->server, r->connection, r, a);
|
result = ap_ssl_var_lookup(r->pool, r->server, r->connection, r, a);
|
||||||
return (result && result[0])? result : NULL;
|
return (result && result[0])? ap_escape_logitem(r->pool, result) : NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *log_ssl_var_short(request_rec *r, char *a)
|
static const char *log_ssl_var_short(request_rec *r, char *a)
|
||||||
|
Reference in New Issue
Block a user