From 63e9d8847bed01a2644e0aa21e90136f55d8af69 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Sun, 24 Jan 1999 12:27:36 +0000 Subject: [PATCH] need check_null_acl_access() --- src/cache_cf.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 -- 2.47.3