You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2023/03/06 10:00:09 UTC

svn commit: r1908118 - in /httpd/httpd/branches/2.4.x: ./ modules/http2/mod_proxy_http2.c

Author: rpluem
Date: Mon Mar  6 10:00:09 2023
New Revision: 1908118

URL: http://svn.apache.org/viewvc?rev=1908118&view=rev
Log:
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.

Modified:
    httpd/httpd/branches/2.4.x/   (props changed)
    httpd/httpd/branches/2.4.x/modules/http2/mod_proxy_http2.c

Propchange: httpd/httpd/branches/2.4.x/
------------------------------------------------------------------------------
  Merged /httpd/httpd/trunk:r1908116

Modified: httpd/httpd/branches/2.4.x/modules/http2/mod_proxy_http2.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/http2/mod_proxy_http2.c?rev=1908118&r1=1908117&r2=1908118&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/http2/mod_proxy_http2.c (original)
+++ httpd/httpd/branches/2.4.x/modules/http2/mod_proxy_http2.c Mon Mar  6 10:00:09 2023
@@ -163,7 +163,7 @@ static int proxy_http2_canon(request_rec
                  * 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;