]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
last_failed_connect bug
authorwessels <>
Fri, 6 Dec 1996 06:12:21 +0000 (06:12 +0000)
committerwessels <>
Fri, 6 Dec 1996 06:12:21 +0000 (06:12 +0000)
src/neighbors.cc

index 1427399006555590e1f438af21dcc845830b564e..da3191642dd865c9a39e3fea43058aef15c6bfa1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: neighbors.cc,v 1.94 1996/11/29 03:28:53 wessels Exp $
+ * $Id: neighbors.cc,v 1.95 1996/12/05 23:12:21 wessels Exp $
  *
  * DEBUG: section 15    Neighbor Routines
  * AUTHOR: Harvest Derived
@@ -881,7 +881,7 @@ int
 neighborUp(edge * e)
 {
     if (e->last_fail_time)
-       if (squid_curtime - e->last_fail_time > (time_t) 60)
+       if (squid_curtime - e->last_fail_time < (time_t) 60)
            return 0;
     if (e->stats.ack_deficit > HIER_MAX_DEFICIT)
        return 0;