1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3: VFS: default: Add 'handle' member to struct vfswrap_getxattrat_state

Not yet used.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14758

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Jeremy Allison 2021-07-14 11:35:06 -07:00 committed by Ralph Boehme
parent e0b327f2eb
commit 24dc3ca67a

View File

@ -3457,6 +3457,7 @@ static ssize_t vfswrap_fgetxattr(struct vfs_handle_struct *handle,
struct vfswrap_getxattrat_state {
struct tevent_context *ev;
struct vfs_handle_struct *handle;
files_struct *dir_fsp;
const struct smb_filename *smb_fname;
@ -3509,6 +3510,7 @@ static struct tevent_req *vfswrap_getxattrat_send(
}
*state = (struct vfswrap_getxattrat_state) {
.ev = ev,
.handle = handle,
.dir_fsp = dir_fsp,
.smb_fname = smb_fname,
};