From: Ralph Boehme Date: Sun, 3 May 2020 06:28:14 +0000 (+0200) Subject: vfs_catia: realign synthetic_smb_fname() args in catia_readdir_attr() X-Git-Tag: ldb-2.2.0~719 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6452b4a71b12d99bf3bdcfa51433311eeefb93a;p=thirdparty%2Fsamba.git vfs_catia: realign synthetic_smb_fname() args in catia_readdir_attr() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_catia.c b/source3/modules/vfs_catia.c index e90adaa2d46..49e6ec70a40 100644 --- a/source3/modules/vfs_catia.c +++ b/source3/modules/vfs_catia.c @@ -2245,8 +2245,11 @@ static NTSTATUS catia_readdir_attr(struct vfs_handle_struct *handle, return status; } - smb_fname = synthetic_smb_fname(talloc_tos(), fname, NULL, - &smb_fname_in->st, 0); + smb_fname = synthetic_smb_fname(talloc_tos(), + fname, + NULL, + &smb_fname_in->st, + 0); status = SMB_VFS_NEXT_READDIR_ATTR(handle, smb_fname, mem_ctx, pattr_data);