]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: Fix a namespace conflict from the ESI merge.
authorrobertc <>
Mon, 10 Mar 2003 18:13:36 +0000 (18:13 +0000)
committerrobertc <>
Mon, 10 Mar 2003 18:13:36 +0000 (18:13 +0000)
Keywords:

Fix a namespace conflict from the ESI merge.

src/ACLMaxUserIP.h
src/NullDelayId.h

index 0b884294b1d85da2f1ec09f22b2878e5589aa6fd..bccf81863e0f12fb1e6ff10e3ad2fb9a5ee83248 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ACLMaxUserIP.h,v 1.1 2003/02/25 12:22:33 robertc Exp $
+ * $Id: ACLMaxUserIP.h,v 1.2 2003/03/10 11:13:36 robertc Exp $
  *
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
@@ -66,7 +66,7 @@ private:
 
     int match(auth_user_request_t *, struct in_addr const &);
     char const *class_;
-    size_t max;
+    size_t maximum;
 
     struct Flags
     {
index 33a177b0014f78d615c54561613753862d4b2849..f8782c0291c73b6c50c93e74d914412789cbaf86 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: NullDelayId.h,v 1.2 2003/02/21 22:50:06 robertc Exp $
+ * $Id: NullDelayId.h,v 1.3 2003/03/10 11:13:36 robertc Exp $
  *
  * DEBUG: section 77    Delay Pools
  * AUTHOR: Robert Collins <robertc@squid-cache.org>
@@ -53,7 +53,7 @@ public:
     void *operator new(size_t);
     void operator delete (void *);
     virtual void deleteSelf() const;
-    virtual int bytesWanted (int min, int max) const {return XMAX(min,max);}
+    virtual int bytesWanted (int minimum, int maximum) const {return max(minimum,maximum);}
 
     virtual void bytesIn(int qty) {}}