From: Joe Orton Date: Mon, 6 Mar 2023 09:24:44 +0000 (+0000) Subject: * modules/http2/mod_proxy_http2.c: Fix missing APLOGNO. X-Git-Tag: 2.5.0-alpha2-ci-test-only~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1061b64bb7da5339b037f936169a088150427bd1;p=thirdparty%2Fapache%2Fhttpd.git * modules/http2/mod_proxy_http2.c: Fix missing APLOGNO. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1908116 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index 6325971b95a..efba5f21902 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -10412 +10413 diff --git a/modules/http2/mod_proxy_http2.c b/modules/http2/mod_proxy_http2.c index b316aa885ab..719c2119f93 100644 --- a/modules/http2/mod_proxy_http2.c +++ b/modules/http2/mod_proxy_http2.c @@ -167,7 +167,7 @@ static int proxy_http2_canon(request_rec *r, char *url) * We have a raw control character or a ' ' in r->args. * Correct encoding was missed. */ - ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(10412) "To be forwarded query string contains control " "characters or spaces"); return HTTP_FORBIDDEN;