From a6537cb9ce3300629e2f2d5529cf57cfb2be8d92 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 12 Feb 2022 11:45:24 +0900 Subject: [PATCH] Fix compile error --- src/shrpx_http3_upstream.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shrpx_http3_upstream.cc b/src/shrpx_http3_upstream.cc index 62ad9220..6c43f273 100644 --- a/src/shrpx_http3_upstream.cc +++ b/src/shrpx_http3_upstream.cc @@ -2326,7 +2326,7 @@ int Http3Upstream::http_end_request_headers(Downstream *downstream, int fin) { downstream->set_request_state(DownstreamState::HEADER_COMPLETE); if (config->http.require_http_scheme && - !http::check_http_scheme(req.scheme, /* encrypted = */true) { + !http::check_http_scheme(req.scheme, /* encrypted = */ true)) { if (error_reply(downstream, 400) != 0) { return -1; }