From edf2cde07021115a8422782e33235e524598384f Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Sun, 3 May 2020 08:32:53 +0200 Subject: [PATCH] vfs_ceph_snapshots: realign synthetic_smb_fname() args in ceph_snap_fill_label() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_ceph_snapshots.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_ceph_snapshots.c b/source3/modules/vfs_ceph_snapshots.c index 163772e59c4..c0c87a56be0 100644 --- a/source3/modules/vfs_ceph_snapshots.c +++ b/source3/modules/vfs_ceph_snapshots.c @@ -143,8 +143,11 @@ static int ceph_snap_fill_label(struct vfs_handle_struct *handle, return -EINVAL; } - smb_fname = synthetic_smb_fname(tmp_ctx, snap_path, - NULL, NULL, 0); + smb_fname = synthetic_smb_fname(tmp_ctx, + snap_path, + NULL, + NULL, + 0); if (smb_fname == NULL) { return -ENOMEM; } -- 2.47.3