Commit a6537cb9 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Fix compile error

parent 79524471
...@@ -2326,7 +2326,7 @@ int Http3Upstream::http_end_request_headers(Downstream *downstream, int fin) { ...@@ -2326,7 +2326,7 @@ int Http3Upstream::http_end_request_headers(Downstream *downstream, int fin) {
downstream->set_request_state(DownstreamState::HEADER_COMPLETE); downstream->set_request_state(DownstreamState::HEADER_COMPLETE);
if (config->http.require_http_scheme && 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) { if (error_reply(downstream, 400) != 0) {
return -1; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment