summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_acl_xattr.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-11-06 21:53:07 -0800
committerJeremy Allison <jra@samba.org>2009-11-06 21:53:07 -0800
commitbd2ffb1c7a70ef9063b99a9318b3e185ddda84fe (patch)
tree339e9abab591fd8e27a24df1568743ef0fe20b05 /source3/modules/vfs_acl_xattr.c
parentafc592402068da2a928dd9975a38a6b1ccf3919f (diff)
downloadsamba-bd2ffb1c7a70ef9063b99a9318b3e185ddda84fe.tar.gz
samba-bd2ffb1c7a70ef9063b99a9318b3e185ddda84fe.tar.bz2
samba-bd2ffb1c7a70ef9063b99a9318b3e185ddda84fe.zip
Fix bug 6865 - acl_xattr module: Has dependency that inherit acls = yes or xattrs are removed.
Jeremy.
Diffstat (limited to 'source3/modules/vfs_acl_xattr.c')
-rw-r--r--source3/modules/vfs_acl_xattr.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/modules/vfs_acl_xattr.c b/source3/modules/vfs_acl_xattr.c
index 7a9cd27e5f..11ca8902c0 100644
--- a/source3/modules/vfs_acl_xattr.c
+++ b/source3/modules/vfs_acl_xattr.c
@@ -208,8 +208,20 @@ static int sys_acl_set_fd_xattr(vfs_handle_struct *handle,
return ret;
}
+static int connect_acl_xattr(struct vfs_handle_struct *handle,
+ const char *service,
+ const char *user)
+{
+ /* Ensure we have "inherit acls = yes" if we're
+ * using this module. */
+ DEBUG(2,("connect_acl_xattr: setting 'inherit acls = true' for service %s\n",
+ service ));
+ set_inherit_acls(SNUM(handle->conn));
+ return 0;
+}
static struct vfs_fn_pointers vfs_acl_xattr_fns = {
+ .connect_fn = connect_acl_xattr,
.mkdir = mkdir_acl_common,
.open = open_acl_common,
.fget_nt_acl = fget_nt_acl_common,