From: wessels <> Date: Fri, 3 Aug 2001 22:54:51 +0000 (+0000) Subject: Guido Serassio discovered missing pointer in aclNBCheck declaration. X-Git-Tag: SQUID_3_0_PRE1~1458 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4729185a29c99712010b64a84c6b3f8ea5251d7b;p=thirdparty%2Fsquid.git Guido Serassio discovered missing pointer in aclNBCheck declaration. --- diff --git a/src/acl.cc b/src/acl.cc index 88bb6633ab..fdcc53e3e9 100644 --- a/src/acl.cc +++ b/src/acl.cc @@ -1,6 +1,6 @@ /* - * $Id: acl.cc,v 1.256 2001/08/03 15:13:03 adrian Exp $ + * $Id: acl.cc,v 1.257 2001/08/03 16:54:51 wessels Exp $ * * DEBUG: section 28 Access Control * AUTHOR: Duane Wessels @@ -1960,7 +1960,7 @@ aclChecklistCreate(const acl_access * A, request_t * request, const char *ident) } void -aclNBCheck(aclCheck_t * checklist, PF callback, void *callback_data) +aclNBCheck(aclCheck_t * checklist, PF * callback, void *callback_data) { checklist->callback = callback; checklist->callback_data = callback_data;