From b09881207a2b4b38f99ab425a456ebbe604181fd Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Sun, 3 May 2020 15:04:36 +0200 Subject: [PATCH] vfs_glusterfs: realign synthetic_smb_fname() args in vfs_gluster_realpath() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_glusterfs.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); -- 2.47.3