From 464bddc2c45863b190e14b5bf57bcfc65b032e4b Mon Sep 17 00:00:00 2001 From: Stefan Fritsch Date: Sun, 4 Sep 2011 16:04:38 +0000 Subject: [PATCH] Revert r1163833: Send a 206 response for a "Range: bytes=0-" request, even if 200 would be more efficient. As discussed on list: Clients that use the 206 response to detect range support are considered broken and should be fixed to use the Accept-Ranges header instead. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1165062 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/byterange_filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/http/byterange_filter.c b/modules/http/byterange_filter.c index 76e636cc01..8972374ff1 100644 --- a/modules/http/byterange_filter.c +++ b/modules/http/byterange_filter.c @@ -578,9 +578,9 @@ static int ap_set_byterange(request_rec *r, apr_off_t clength, /* If all ranges are unsatisfiable, we should return 416 */ return -1; } - if (sum_lengths > clength) { + if (sum_lengths >= clength) { ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, r, - "Sum of ranges larger than file, ignoring."); + "Sum of ranges not smaller than file, ignoring."); return 0; } -- 2.49.0