--------------------- PatchSet 5521 Date: 2002/11/29 21:49:19 Author: hno Branch: ssl-2_5 Tag: (none) Log: Oops.. allocated the wrong datatype for acl cert data Members: src/acl.c:1.43.2.11.2.1->1.43.2.11.2.2 Index: squid/src/acl.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/acl.c,v retrieving revision 1.43.2.11.2.1 retrieving revision 1.43.2.11.2.2 diff -u -r1.43.2.11.2.1 -r1.43.2.11.2.2 --- squid/src/acl.c 29 Nov 2002 17:49:18 -0000 1.43.2.11.2.1 +++ squid/src/acl.c 29 Nov 2002 21:49:19 -0000 1.43.2.11.2.2 @@ -1,6 +1,6 @@ /* - * $Id: acl.c,v 1.43.2.11.2.1 2002/11/29 17:49:18 hno Exp $ + * $Id: acl.c,v 1.43.2.11.2.2 2002/11/29 21:49:19 hno Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -706,7 +706,7 @@ if (strcasecmp((*datap)->attribute, attribute) != 0) self_destruct(); } else { - *datap = memAllocate(MEM_ACL_DENY_INFO_LIST); + *datap = memAllocate(MEM_ACL_CERT_DATA); (*datap)->attribute = xstrdup(attribute); } Top = &(*datap)->values;