]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
DW got the sign wrong on recent patch.
authorwessels <>
Sun, 4 Mar 2001 07:54:48 +0000 (07:54 +0000)
committerwessels <>
Sun, 4 Mar 2001 07:54:48 +0000 (07:54 +0000)
src/client_side.cc

index 619417eebb04434eea72403cf3acf3c3ce98ed3e..e232d859d5082a064424d6f9a36ec8e0acc6268a 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: client_side.cc,v 1.531 2001/03/03 10:39:31 hno Exp $
+ * $Id: client_side.cc,v 1.532 2001/03/04 00:54:48 wessels Exp $
  *
  * DEBUG: section 33    Client-side Routines
  * AUTHOR: Duane Wessels
@@ -1284,7 +1284,7 @@ clientBuildReplyHeader(clientHttpRequest * http, HttpReply * rep)
            (void) 0;
        else if (http->entry->timestamp < 0)
            (void) 0;
-       else if (http->entry->timestamp > squid_curtime)
+       else if (http->entry->timestamp < squid_curtime)
            httpHeaderPutInt(hdr, HDR_AGE,
                squid_curtime - http->entry->timestamp);
     }