From: Ruediger Pluem Date: Mon, 6 Mar 2023 10:00:09 +0000 (+0000) Subject: Merge r1908116 from trunk: X-Git-Tag: 2.4.57-rc1-candidate~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b93a6512f14f5f68887ddfe677e91233ed79fb0;p=thirdparty%2Fapache%2Fhttpd.git Merge r1908116 from trunk: * modules/http2/mod_proxy_http2.c: Fix missing APLOGNO. Submitted by: jorton Reviewed by: rpluem Note: mod_proxy_http2 is CTR on 2.4.x. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1908118 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/mod_proxy_http2.c b/modules/http2/mod_proxy_http2.c index aa299b937a5..2a9967e5d57 100644 --- a/modules/http2/mod_proxy_http2.c +++ b/modules/http2/mod_proxy_http2.c @@ -163,7 +163,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;