diff options
author | Yann Ylavic <ylavic@apache.org> | 2022-02-10 22:04:12 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2022-02-10 22:04:12 +0100 |
commit | 42c72509feb1c7c37e0cf2de78e35cfd53036968 (patch) | |
tree | 8da2035794db1bc4a9f3848be17fdf1016322339 | |
parent | APLOGNOs for r1897940 [skip ci]. (diff) | |
download | apache2-42c72509feb1c7c37e0cf2de78e35cfd53036968.tar.xz apache2-42c72509feb1c7c37e0cf2de78e35cfd53036968.zip |
Follow up to r1897940: APLOGNO()s.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897948 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/http2/h2_stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http2/h2_stream.c b/modules/http2/h2_stream.c index 406465112b..a79c7cdd0c 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; |