From bb337ad7184a7cc4b44a3b91d1ff7f64be1ba47e Mon Sep 17 00:00:00 2001 From: wessels <> Date: Tue, 15 Sep 1998 02:29:30 +0000 Subject: [PATCH] timeout calculation bug; off by 1000! --- src/neighbors.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/neighbors.cc b/src/neighbors.cc index 8a6c94bd22..bf5f70da3f 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -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 -- 2.47.3