You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2022/10/13 07:12:43 UTC

svn commit: r1904561 - /httpd/httpd/trunk/modules/http2/h2_request.c

Author: icing
Date: Thu Oct 13 07:12:43 2022
New Revision: 1904561

URL: http://svn.apache.org/viewvc?rev=1904561&view=rev
Log:
aplogno should be called aplogyes

Modified:
    httpd/httpd/trunk/modules/http2/h2_request.c

Modified: httpd/httpd/trunk/modules/http2/h2_request.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_request.c?rev=1904561&r1=1904560&r2=1904561&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_request.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_request.c Thu Oct 13 07:12:43 2022
@@ -313,7 +313,7 @@ static void assign_headers(request_rec *
          */
         const char *orig_host = apr_table_get(req->headers, "Host");
         if (orig_host && strcmp(req->authority, orig_host)) {
-            ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO()
+            ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(10401)
                           "overwriting 'Host: %s' with :authority: %s'",
                           orig_host, req->authority);
             apr_table_setn(r->subprocess_env, "H2_ORIGINAL_HOST", orig_host);