From: wessels <> Date: Wed, 7 Jul 1999 08:13:40 +0000 (+0000) Subject: got domain/subdomain reversed in debug output X-Git-Tag: SQUID_3_0_PRE1~2127 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8c540630704623cbc2a7c3fd4ef937dcc5d089b9;p=thirdparty%2Fsquid.git got domain/subdomain reversed in debug output --- diff --git a/src/acl.cc b/src/acl.cc index 2bbf8b54e6..b029b0449c 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,6 +1,6 @@ /* - * $Id: acl.cc,v 1.205 1999/06/24 22:40:21 wessels Exp $ + * $Id: acl.cc,v 1.206 1999/07/07 02:13:40 wessels Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -1906,7 +1906,7 @@ aclDomainCompare(const void *data, splayNode * n) l2--; if (0 == l1) { if ('.' == d2[l2 - 1]) { - debug(28, 0) ("WARNING: %s is a subdomain of %s\n", d1, d2); + debug(28, 0) ("WARNING: %s is a subdomain of %s\n", d2, d1); debug(28, 0) ("WARNING: This may break Splay tree searching\n"); debug(28, 0) ("WARNING: You should remove '%s' from the ACL named '%s'\n", d2, AclMatchedName); } @@ -1914,7 +1914,7 @@ aclDomainCompare(const void *data, splayNode * n) } if (0 == l2) { if ('.' == d1[l1 - 1]) { - debug(28, 0) ("WARNING: %s is a subdomain of %s\n", d2, d1); + debug(28, 0) ("WARNING: %s is a subdomain of %s\n", d1, d2); debug(28, 0) ("WARNING: This may break Splay tree searching\n"); debug(28, 0) ("WARNING: You should remove '%s' from the ACL named '%s'\n", d1, AclMatchedName); }