From: Andrew Bartlett Date: Mon, 20 Aug 2012 00:10:27 +0000 (+1000) Subject: s3-vfs: Use the system. namespace for fake ACLs X-Git-Tag: samba-4.0.0beta7~127 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c0bef17569d650c32ab82396f43d435ab9ef831;p=thirdparty%2Fsamba.git s3-vfs: Use the system. namespace for fake ACLs By using the system. namespace, we make sure this is only run on top of a TDB based ACL store (ie in make test). Andrew Bartlett --- diff --git a/source3/modules/vfs_fake_acls.c b/source3/modules/vfs_fake_acls.c index 175d6d2dc40..19621586931 100644 --- a/source3/modules/vfs_fake_acls.c +++ b/source3/modules/vfs_fake_acls.c @@ -30,10 +30,10 @@ #undef DBGC_CLASS #define DBGC_CLASS DBGC_VFS -#define FAKE_UID "FAKE.uid" -#define FAKE_GID "FAKE.gid" -#define FAKE_ACL_ACCESS_XATTR "FAKE.access_acl" -#define FAKE_ACL_DEFAULT_XATTR "FAKE.default_acl" +#define FAKE_UID "system.fake_uid" +#define FAKE_GID "system.fake_gid" +#define FAKE_ACL_ACCESS_XATTR "system.fake_access_acl" +#define FAKE_ACL_DEFAULT_XATTR "system.fake_default_acl" static int fake_acls_uid(vfs_handle_struct *handle, const char *path,