You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2020/02/12 05:36:32 UTC

svn commit: r1873927 - /httpd/httpd/trunk/modules/http2/h2_stream.c

Author: jailletc36
Date: Wed Feb 12 05:36:31 2020
New Revision: 1873927

URL: http://svn.apache.org/viewvc?rev=1873927&view=rev
Log:
Add a missing APLOGNO()

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

Modified: httpd/httpd/trunk/modules/http2/h2_stream.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_stream.c?rev=1873927&r1=1873926&r2=1873927&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_stream.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_stream.c Wed Feb 12 05:36:31 2020
@@ -790,7 +790,7 @@ apr_status_t h2_stream_end_headers(h2_st
         if (ctx.failed_key) {
             if (!h2_stream_is_ready(stream)) {
                 ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, stream->session->c,
-                              H2_STRM_LOG(APLOGNO(), stream,"Request header exceeds "
+                              H2_STRM_LOG(APLOGNO(10230), stream,"Request header exceeds "
                                           "LimitRequestFieldSize: %.*s"),
                               (int)H2MIN(strlen(ctx.failed_key), 80), ctx.failed_key);
             }