]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
ACL Tag requires request not conn
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 2 May 2010 09:30:17 +0000 (21:30 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 2 May 2010 09:30:17 +0000 (21:30 +1200)
src/acl/Tag.cc

index 5641e6e3018e3a6bc396bcc6e8425510a7a436ab..ef4ac006950c85f0ffc345d125c7167b205a8e5b 100644 (file)
@@ -43,7 +43,7 @@
 int
 ACLTagStrategy::match (ACLData<MatchType> * &data, ACLFilledChecklist *checklist)
 {
-    if (checklist->conn() != NULL)
+    if (checklist->request != NULL)
         return data->match (checklist->request->tag.termedBuf());
     return 0;
 }