summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-20 10:10:27 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-20 21:57:47 +1000
commit6c0bef17569d650c32ab82396f43d435ab9ef831 (patch)
tree6169cde71c10dad208fe80baa495421d52ae7766 /source3
parent0f2d288f760d509b1e363bea38221ec897c3fe8f (diff)
downloadsamba-6c0bef17569d650c32ab82396f43d435ab9ef831.tar.gz
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
Diffstat (limited to 'source3')
-rw-r--r--source3/modules/vfs_fake_acls.c8
1 files changed, 4 insertions, 4 deletions
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,