From: wessels <> Date: Thu, 16 Jan 1997 00:41:28 +0000 (+0000) Subject: SET/TEST typo X-Git-Tag: SQUID_3_0_PRE1~5202 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d9e7abc837f22abf5cd34c0cf72c36a8f42ba6a;p=thirdparty%2Fsquid.git SET/TEST typo --- diff --git a/src/neighbors.cc b/src/neighbors.cc index 910faec0b3..76e39e6ecb 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -1,5 +1,5 @@ /* - * $Id: neighbors.cc,v 1.104 1996/12/21 07:54:52 wessels Exp $ + * $Id: neighbors.cc,v 1.105 1997/01/15 17:41:28 wessels Exp $ * * DEBUG: section 15 Neighbor Routines * AUTHOR: Harvest Derived @@ -281,7 +281,7 @@ getDefaultParent(request_t * request) continue; if (neighborType(e, request) != EDGE_PARENT) continue; - if (!BIT_SET(e->options, NEIGHBOR_DEFAULT_PARENT)) + if (!BIT_TEST(e->options, NEIGHBOR_DEFAULT_PARENT)) continue; if (!edgeWouldBePinged(e, request)) continue;