From: Amos Jeffries Date: Sun, 2 May 2010 09:30:17 +0000 (+1200) Subject: ACL Tag requires request not conn X-Git-Tag: SQUID_3_2_0_1~243 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d25b513221738930780e374c2f52a8a9d36e70ed;p=thirdparty%2Fsquid.git ACL Tag requires request not conn --- diff --git a/src/acl/Tag.cc b/src/acl/Tag.cc index 5641e6e301..ef4ac00695 100644 --- a/src/acl/Tag.cc +++ b/src/acl/Tag.cc @@ -43,7 +43,7 @@ int ACLTagStrategy::match (ACLData * &data, ACLFilledChecklist *checklist) { - if (checklist->conn() != NULL) + if (checklist->request != NULL) return data->match (checklist->request->tag.termedBuf()); return 0; }