summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2023-03-06 09:24:44 +0000
committerJoe Orton <jorton@apache.org>2023-03-06 09:24:44 +0000
commit1061b64bb7da5339b037f936169a088150427bd1 (patch)
treef524445f85097f1ff1205c468b024b1ed20be089
parent9282a06e55cb142666d6ed565c9031e728b7d537 (diff)
downloadhttpd-1061b64bb7da5339b037f936169a088150427bd1.tar.gz
* 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
-rw-r--r--docs/log-message-tags/next-number2
-rw-r--r--modules/http2/mod_proxy_http2.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number
index 6325971b95..efba5f2190 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 b316aa885a..719c2119f9 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;