]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: Really fix bug #646
authorrobertc <>
Wed, 18 Jun 2003 18:24:02 +0000 (18:24 +0000)
committerrobertc <>
Wed, 18 Jun 2003 18:24:02 +0000 (18:24 +0000)
Keywords:

Really fix it this time.

src/HttpHdrRange.cc

index c7399f09e84ee216427e5ff2352278ce454ab974..e510877469d8efb6e3ecd064c91e3ac553d433da 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: HttpHdrRange.cc,v 1.33 2003/05/24 12:43:30 robertc Exp $
+ * $Id: HttpHdrRange.cc,v 1.34 2003/06/18 12:24:02 robertc Exp $
  *
  * DEBUG: section 64    HTTP Range Header
  * AUTHOR: Alex Rousskov
@@ -590,7 +590,7 @@ HttpHdrRange::offsetLimitExceeded() const
 
     if (firstOffset() == -1)
         /* tail request */
-        return false;
+        return true;
 
     if ((ssize_t)Config.rangeOffsetLimit >= firstOffset())
         /* below the limit */