]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Follow up to r1897940: APLOGNO()s.
authorYann Ylavic <ylavic@apache.org>
Thu, 10 Feb 2022 21:04:12 +0000 (21:04 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 10 Feb 2022 21:04:12 +0000 (21:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897948 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/h2_stream.c

index 406465112bfe288aca13853e0f6d883731e368c0..a79c7cdd0c77ec5a063d2c6eabeb3a8854839eed 100644 (file)
@@ -830,7 +830,7 @@ apr_status_t h2_stream_end_headers(h2_stream *stream, int eos, size_t raw_bytes)
     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_stream *stream, int eos, size_t raw_bytes)
     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;