From 7d6c8d7eb933a70aeede2d253cbc99c5ab497652 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sun, 30 Nov 2008 16:20:21 +0000 Subject: [PATCH] Kludge Darwin build problem git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8096 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/filed/acl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bacula/src/filed/acl.c b/bacula/src/filed/acl.c index 6e17b198c6..3e4d7c9776 100644 --- a/bacula/src/filed/acl.c +++ b/bacula/src/filed/acl.c @@ -256,7 +256,8 @@ static bool acl_is_trivial(acl_t acl) /* * acl is trivial if it is empty. */ - return (acl_entries(acl) == 0); +// return (acl_entries(acl) == 0); + return true; /* Allow to compile -- KES */ } #else /* FreeBSD, IRIX, OSF1, Linux */ static bool acl_is_trivial(acl_t acl) -- 2.39.5