From 079170d40240e3699a1d4083841c26b99e247e41 Mon Sep 17 00:00:00 2001 From: hno <> Date: Sun, 8 May 2005 12:42:10 +0000 Subject: [PATCH] Bug #1166: Configuration confusing when empty acls are encountered Warn on empty proxy_auth acls. --- src/ACLProxyAuth.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ACLProxyAuth.cc b/src/ACLProxyAuth.cc index 2e35615afd..c0a456f5e9 100644 --- a/src/ACLProxyAuth.cc +++ b/src/ACLProxyAuth.cc @@ -97,7 +97,7 @@ ACLProxyAuth::dump() const bool ACLProxyAuth::empty () const { - return data == NULL; + return data->empty(); } bool -- 2.47.3