From: wessels <> Date: Sun, 4 Mar 2001 07:54:48 +0000 (+0000) Subject: DW got the sign wrong on recent patch. X-Git-Tag: SQUID_3_0_PRE1~1578 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15eab38b9635acbbd7b7cef44e3be36aedca1606;p=thirdparty%2Fsquid.git DW got the sign wrong on recent patch. --- diff --git a/src/client_side.cc b/src/client_side.cc index 619417eebb..e232d859d5 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -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); }