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

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

Author: ylavic
Date: Thu Feb 10 21:04:12 2022
New Revision: 1897948

URL: http://svn.apache.org/viewvc?rev=1897948&view=rev
Log:
Follow up to r1897940: APLOGNO()s.

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=1897948&r1=1897947&r2=1897948&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_stream.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_stream.c Thu Feb 10 21:04:12 2022
@@ -830,7 +830,7 @@ apr_status_t h2_stream_end_headers(h2_st
     if (!ap_cstr_casecmp(req->method, "CONNECT")) {
         if (req->scheme || req->path) {
             ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, stream->session->c1,
-                          H2_STRM_LOG(APLOGNO(), stream, "Request to CONNECT "
+                          H2_STRM_LOG(APLOGNO(10384), stream, "Request to CONNECT "
                           "with :scheme or :path specified, sending 400 answer"));
             set_error_response(stream, HTTP_BAD_REQUEST);
             goto cleanup;
@@ -839,7 +839,7 @@ apr_status_t h2_stream_end_headers(h2_st
     else if (is_http_or_https) {
         if (!req->path) {
             ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, stream->session->c1,
-                          H2_STRM_LOG(APLOGNO(), stream, "Request for http(s) "
+                          H2_STRM_LOG(APLOGNO(10385), stream, "Request for http(s) "
                           "resource without :path, sending 400 answer"));
             set_error_response(stream, HTTP_BAD_REQUEST);
             goto cleanup;