s3-vfs: Use the system. namespace for fake ACLs
authorAndrew Bartlett <abartlet@samba.org>
Mon, 20 Aug 2012 00:10:27 +0000 (10:10 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 20 Aug 2012 11:57:47 +0000 (21:57 +1000)
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

source3/modules/vfs_fake_acls.c

index 175d6d2dc4074d9deea9b506536812329dd71c9c..196215869314c51239f6a0cb11a277fa631357af 100644 (file)
 #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,