]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
timeout calculation bug; off by 1000!
authorwessels <>
Tue, 15 Sep 1998 02:29:30 +0000 (02:29 +0000)
committerwessels <>
Tue, 15 Sep 1998 02:29:30 +0000 (02:29 +0000)
src/neighbors.cc

index 8a6c94bd226bb3effa908bc3ba2923f886e76f2f..bf5f70da3f703a76c0a63d23c1bca3fd0e5d7be8 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: neighbors.cc,v 1.244 1998/09/11 17:07:45 wessels Exp $
+ * $Id: neighbors.cc,v 1.245 1998/09/14 20:29:30 wessels Exp $
  *
  * DEBUG: section 15    Neighbor Routines
  * AUTHOR: Harvest Derived
@@ -472,7 +472,7 @@ neighborsUdpPing(request_t * request,
      * If there is a configured timeout, use it
      */
     if (Config.Timeout.icp_query)
-       *timeout = Config.Timeout.icp_query * 1000;
+       *timeout = Config.Timeout.icp_query;
     else if (*exprep > 0)
        (*timeout) = 2 * (*timeout) / (*exprep);
     else