From: Ralph Boehme Date: Sun, 3 May 2020 06:32:53 +0000 (+0200) Subject: vfs_ceph_snapshots: realign synthetic_smb_fname() args in ceph_snap_fill_label() X-Git-Tag: ldb-2.2.0~718 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=edf2cde07021115a8422782e33235e524598384f;p=thirdparty%2Fsamba.git vfs_ceph_snapshots: realign synthetic_smb_fname() args in ceph_snap_fill_label() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- 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; }