From: Ralph Boehme Date: Sun, 3 May 2020 06:33:51 +0000 (+0200) Subject: vfs_ceph_snapshots: realign synthetic_smb_fname() args in ceph_snap_gmt_convert_dir() X-Git-Tag: ldb-2.2.0~717 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3892c5b0d5f4e1e8fb8ed95acf6910302fdc3745;p=thirdparty%2Fsamba.git vfs_ceph_snapshots: realign synthetic_smb_fname() args in ceph_snap_gmt_convert_dir() 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 c0c87a56be0..61672413e5b 100644 --- a/source3/modules/vfs_ceph_snapshots.c +++ b/source3/modules/vfs_ceph_snapshots.c @@ -615,8 +615,11 @@ static int ceph_snap_gmt_convert_dir(struct vfs_handle_struct *handle, goto err_out; } - smb_fname = synthetic_smb_fname(tmp_ctx, _converted_buf, - NULL, NULL, 0); + smb_fname = synthetic_smb_fname(tmp_ctx, + _converted_buf, + NULL, + NULL, + 0); if (smb_fname == NULL) { ret = -ENOMEM; goto err_out;