From: wessels <> Date: Tue, 19 Jan 1999 23:35:13 +0000 (+0000) Subject: braino, typo X-Git-Tag: SQUID_3_0_PRE1~2384 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7406d2eaf15026421e11ad7575783bd88da93377;p=thirdparty%2Fsquid.git braino, typo --- diff --git a/src/asn.cc b/src/asn.cc index e114c1f349..26cfcbef9c 100644 --- a/src/asn.cc +++ b/src/asn.cc @@ -1,5 +1,5 @@ /* - * $Id: asn.cc,v 1.54 1999/01/11 16:50:27 wessels Exp $ + * $Id: asn.cc,v 1.55 1999/01/19 16:35:13 wessels Exp $ * * DEBUG: section 53 AS Number handling * AUTHOR: Duane Wessels, Kostas Anagnostakis @@ -110,9 +110,9 @@ asnMatchIp(void *data, struct in_addr addr) if (AS_tree_head == NULL) return 0; - if (addr.s_addr != no_addr.s_addr) + if (addr.s_addr == no_addr.s_addr) return 0; - if (addr.s_addr != any_addr.s_addr) + if (addr.s_addr == any_addr.s_addr) return 0; store_m_int(lh, m_addr); rn = rn_match(m_addr, AS_tree_head);