--------------------- PatchSet 5139 Date: 2002/09/26 12:53:46 Author: rbcollins Branch: auth_rewrite Tag: (none) Log: and fix http_reply_access for auth. Doh. Members: src/client_side_reply.c:1.7.4.2->1.7.4.3 Index: squid/src/client_side_reply.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/Attic/client_side_reply.c,v retrieving revision 1.7.4.2 retrieving revision 1.7.4.3 diff -u -r1.7.4.2 -r1.7.4.3 --- squid/src/client_side_reply.c 26 Sep 2002 12:37:41 -0000 1.7.4.2 +++ squid/src/client_side_reply.c 26 Sep 2002 12:53:46 -0000 1.7.4.3 @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.c,v 1.7.4.2 2002/09/26 12:37:41 rbcollins Exp $ + * $Id: client_side_reply.c,v 1.7.4.3 2002/09/26 12:53:46 rbcollins Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -1504,6 +1504,8 @@ (int) body_size, rep->hdr_sz); ch = aclChecklistCreate(Config.accessList.reply, http->request, NULL); ch->reply = rep; + if (http->conn) + ch->conn = cbdataReference(http->conn); /* acl.c frees */ rv = aclCheckFast(Config.accessList.reply, ch); aclChecklistFree(ch); ch = NULL;