From: Yann Ylavic Date: Thu, 10 Feb 2022 21:04:12 +0000 (+0000) Subject: Follow up to r1897940: APLOGNO()s. X-Git-Tag: 2.5.0-alpha2-ci-test-only~497 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42c72509feb1c7c37e0cf2de78e35cfd53036968;p=thirdparty%2Fapache%2Fhttpd.git Follow up to r1897940: APLOGNO()s. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897948 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_stream.c b/modules/http2/h2_stream.c index 406465112bf..a79c7cdd0c7 100644 --- a/modules/http2/h2_stream.c +++ b/modules/http2/h2_stream.c @@ -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;