]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
range_offset_limit none, and other b_size_t friends
authorhno <>
Fri, 30 Apr 2004 05:54:54 +0000 (05:54 +0000)
committerhno <>
Fri, 30 Apr 2004 05:54:54 +0000 (05:54 +0000)
src/cache_cf.cc

index 5290d2240c5c0090c984dff0a3bcf3b8d912191f..01b03ec27560498f3c03d55970de87604d1319ab 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: cache_cf.cc,v 1.452 2003/11/06 16:55:24 hno Exp $
+ * $Id: cache_cf.cc,v 1.453 2004/04/29 23:54:54 hno Exp $
  *
  * DEBUG: section 3     Configuration File Parsing
  * AUTHOR: Harvest Derived
@@ -672,7 +672,7 @@ parseBytesLine(size_t * bptr, const char *units)
         self_destruct();
 
     if (strcmp(token, "none") == 0) {
-        *bptr = static_cast<size_t>(1);
+        *bptr = static_cast<size_t>(-1);
         return;
     }