diff options
author | Jim Jagielski <jim@apache.org> | 2018-08-01 13:27:28 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2018-08-01 13:27:28 +0200 |
commit | c7c68752c8856a73dad940e058ed9e2737bf9d10 (patch) | |
tree | 86af11fc7a2764223776df049074285b7e342f9c /modules/generators | |
parent | spelling (diff) | |
download | apache2-c7c68752c8856a73dad940e058ed9e2737bf9d10.tar.xz apache2-c7c68752c8856a73dad940e058ed9e2737bf9d10.zip |
Fix PR54848 in a 2.4.x backportable format. Ideally deprecating the use
of ->client in whatever version of 2.4 this is added into would be
more logical.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1837225 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/generators')
-rw-r--r-- | modules/generators/mod_status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c index 12801f94ce..3b89350321 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -801,7 +801,7 @@ static int status_handler(request_rec *r) ap_rprintf(r, " <i>%s {%s}</i> <i>(%s)</i> <b>[%s]</b><br />\n\n", ap_escape_html(r->pool, - ws_record->client), + ws_record->client64), ap_escape_html(r->pool, ap_escape_logitem(r->pool, ws_record->request)), @@ -888,7 +888,7 @@ static int status_handler(request_rec *r) ap_rprintf(r, "</td><td>%s</td><td>%s</td><td nowrap>%s</td>" "<td nowrap>%s</td></tr>\n\n", ap_escape_html(r->pool, - ws_record->client), + ws_record->client64), ap_escape_html(r->pool, ws_record->protocol), ap_escape_html(r->pool, |