From 1acb96d5d2dac81e2a5fd6d04fe1d61b81932be0 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Sat, 10 Oct 2009 21:16:32 +0200 Subject: [PATCH] Add posix acls stored in xattrs on FreeBSD --- bacula/src/filed/xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/filed/xattr.c b/bacula/src/filed/xattr.c index f726bea8f8..cf5a452f43 100644 --- a/bacula/src/filed/xattr.c +++ b/bacula/src/filed/xattr.c @@ -624,7 +624,7 @@ static bxattr_exit_code (*os_parse_xattr_streams)(JCR *jcr, int stream) = linux_ #if defined(HAVE_FREEBSD_OS) static int os_default_xattr_streams[1] = { STREAM_XATTR_FREEBSD }; static int os_default_xattr_namespaces[2] = { EXTATTR_NAMESPACE_USER, EXTATTR_NAMESPACE_SYSTEM }; -static const char *xattr_acl_skiplist[1] = { NULL }; +static const char *xattr_acl_skiplist[2] = { "system.posix1e.acl_access", NULL }; static const char *xattr_skiplist[1] = { NULL }; #elif defined(HAVE_NETBSD_OS) static int os_default_xattr_streams[1] = { STREAM_XATTR_NETBSD }; -- 2.39.5