From: wessels <> Date: Sat, 17 Oct 1998 11:38:45 +0000 (+0000) Subject: change clock skew debug threshold to 2 hours X-Git-Tag: SQUID_3_0_PRE1~2559 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86a48b67c2984f526d53775a900373fa1e2907c3;p=thirdparty%2Fsquid.git change clock skew debug threshold to 2 hours --- diff --git a/src/http.cc b/src/http.cc index dd0d104b1b..cd36edf078 100644 --- a/src/http.cc +++ b/src/http.cc @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.328 1998/10/17 05:37:48 wessels Exp $ + * $Id: http.cc,v 1.329 1998/10/17 05:38:45 wessels Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -334,7 +334,7 @@ httpProcessReplyHeader(HttpStateData * httpState, const char *buf, int size) ctx_exit(ctx); if (reply->date > -1 && !httpState->peer) { int skew = abs(reply->date - squid_curtime); - if (skew > 60) + if (skew > 7200) debug(11, 1) ("%s's clock is skewed by %d seconds!\n", httpState->request->host, skew); }