From: wessels <> Date: Sun, 24 Jan 1999 12:27:36 +0000 (+0000) Subject: need check_null_acl_access() X-Git-Tag: SQUID_3_0_PRE1~2344 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=63e9d8847bed01a2644e0aa21e90136f55d8af69;p=thirdparty%2Fsquid.git need check_null_acl_access() --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 3455a4f35f..c1adaffefd 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1,6 +1,6 @@ /* - * $Id: cache_cf.cc,v 1.321 1999/01/24 02:26:21 wessels Exp $ + * $Id: cache_cf.cc,v 1.322 1999/01/24 05:27:36 wessels Exp $ * * DEBUG: section 3 Configuration File Parsing * AUTHOR: Harvest Derived @@ -1374,6 +1374,12 @@ check_null_wordlist(wordlist * w) return w == NULL; } +static int +check_null_acl_access(acl_access *a) +{ + return a == NULL; +} + #define free_wordlist wordlistDestroy #define free_uri_whitespace free_int