We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea2c508 commit 914651fCopy full SHA for 914651f
1 file changed
include/proxy/http2/Http2Stream.h
@@ -401,7 +401,7 @@ Http2Stream::payload_length_is_valid() const
401
bool is_payload_precluded =
402
this->is_outbound_connection() && (_send_header.method_get_wksidx() == HTTP_WKSIDX_HEAD ||
403
(_send_header.method_get_wksidx() == HTTP_WKSIDX_GET && _send_header.presence(mask) &&
404
- _receive_header.status_get() == HTTPStatus::NOT_MODIFIED));
+ _receive_header.status_get() == HTTP_STATUS_NOT_MODIFIED));
405
406
if (content_length != 0 && !is_payload_precluded && content_length != data_length) {
407
Warning("Bad payload length content_length=%d data_legnth=%d session_id=%" PRId64, content_length,
0 commit comments