From: Ralph Boehme Date: Sun, 3 May 2020 13:01:54 +0000 (+0200) Subject: vfs_default: realign synthetic_smb_fname() args in vfswrap_fs_capabilities() X-Git-Tag: ldb-2.2.0~716 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0a4d8c785b00e2781e40927ea4fd2f487469652;p=thirdparty%2Fsamba.git vfs_default: realign synthetic_smb_fname() args in vfswrap_fs_capabilities() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 6609cabe2e0..6b5ab1e2ef4 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -131,8 +131,11 @@ static uint32_t vfswrap_fs_capabilities(struct vfs_handle_struct *handle, struct vfs_statvfs_struct statbuf; int ret; - smb_fname_cpath = synthetic_smb_fname(talloc_tos(), conn->connectpath, - NULL, NULL, 0); + smb_fname_cpath = synthetic_smb_fname(talloc_tos(), + conn->connectpath, + NULL, + NULL, + 0); if (smb_fname_cpath == NULL) { return caps; }