summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_fake_acls.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2017-05-24 10:47:46 -0700
committerJeremy Allison <jra@samba.org>2017-05-31 22:50:22 +0200
commitaada94885dce29334e34c9aae32c22e7acfc1174 (patch)
tree9d8537532716da3435d583081182361d01588eae /source3/modules/vfs_fake_acls.c
parentf5dd864606d5e587b85695ea11520df31b353fb8 (diff)
downloadsamba-aada94885dce29334e34c9aae32c22e7acfc1174.tar.gz
s3: VFS: Change SMB_VFS_SYS_ACL_SET_FILE to use const struct smb_filename * instead of const char *.
We need to migrate all pathname based VFS calls to use a struct to finish modernising the VFS with extra timestamp and flags parameters. Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/modules/vfs_fake_acls.c')
-rw-r--r--source3/modules/vfs_fake_acls.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/source3/modules/vfs_fake_acls.c b/source3/modules/vfs_fake_acls.c
index cb8d12395cc..fc655c874eb 100644
--- a/source3/modules/vfs_fake_acls.c
+++ b/source3/modules/vfs_fake_acls.c
@@ -316,7 +316,10 @@ static SMB_ACL_T fake_acls_sys_acl_get_fd(struct vfs_handle_struct *handle,
}
-static int fake_acls_sys_acl_set_file(vfs_handle_struct *handle, const char *path, SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl)
+static int fake_acls_sys_acl_set_file(vfs_handle_struct *handle,
+ const struct smb_filename *smb_fname,
+ SMB_ACL_TYPE_T acltype,
+ SMB_ACL_T theacl)
{
int ret;
const char *name = NULL;
@@ -336,7 +339,8 @@ static int fake_acls_sys_acl_set_file(vfs_handle_struct *handle, const char *pat
name = FAKE_ACL_DEFAULT_XATTR;
break;
}
- ret = SMB_VFS_NEXT_SETXATTR(handle, path, name, blob.data, blob.length, 0);
+ ret = SMB_VFS_NEXT_SETXATTR(handle, smb_fname->base_name,
+ name, blob.data, blob.length, 0);
TALLOC_FREE(frame);
return ret;
}