From: Ralph Boehme Date: Sun, 3 May 2020 13:04:36 +0000 (+0200) Subject: vfs_glusterfs: realign synthetic_smb_fname() args in vfs_gluster_realpath() X-Git-Tag: ldb-2.2.0~710 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b09881207a2b4b38f99ab425a456ebbe604181fd;p=thirdparty%2Fsamba.git vfs_glusterfs: realign synthetic_smb_fname() args in vfs_gluster_realpath() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_glusterfs.c b/source3/modules/vfs_glusterfs.c index efb6989190f..85009b66d7b 100644 --- a/source3/modules/vfs_glusterfs.c +++ b/source3/modules/vfs_glusterfs.c @@ -1523,7 +1523,11 @@ static struct smb_filename *vfs_gluster_realpath(struct vfs_handle_struct *handl smb_fname->base_name, resolved_path); if (result != NULL) { - result_fname = synthetic_smb_fname(ctx, result, NULL, NULL, 0); + result_fname = synthetic_smb_fname(ctx, + result, + NULL, + NULL, + 0); } SAFE_FREE(resolved_path);