From: Noel Power Date: Wed, 3 Mar 2021 11:29:43 +0000 (+0000) Subject: s3/smbd: VFS Fix incorrect VFS_FIND X-Git-Tag: tevent-0.11.0~1255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bdd2420e8972acb89a41829bddef5d857d7fb91;p=thirdparty%2Fsamba.git s3/smbd: VFS Fix incorrect VFS_FIND smb_vfs_call_fset_dos_attributes is looking for the wrong function Signed-off-by: Noel Power Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 432f2119df0..34d8474ff36 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -2481,7 +2481,7 @@ NTSTATUS smb_vfs_call_fset_dos_attributes(struct vfs_handle_struct *handle, struct files_struct *fsp, uint32_t dosmode) { - VFS_FIND(set_dos_attributes); + VFS_FIND(fset_dos_attributes); return handle->fns->fset_dos_attributes_fn(handle, fsp, dosmode); }