From: Ralph Boehme Date: Sun, 3 May 2020 13:04:14 +0000 (+0200) Subject: vfs_fruit: realign synthetic_smb_fname() args in fruit_get_bandsize() X-Git-Tag: ldb-2.2.0~711 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7bf27cbf401cfd23416a1e8f856715f0311c854;p=thirdparty%2Fsamba.git vfs_fruit: realign synthetic_smb_fname() args in fruit_get_bandsize() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_fruit.c b/source3/modules/vfs_fruit.c index 92c7aafba8b..a28ad19fa4e 100644 --- a/source3/modules/vfs_fruit.c +++ b/source3/modules/vfs_fruit.c @@ -4668,7 +4668,11 @@ static bool fruit_get_bandsize(vfs_handle_struct *handle, goto out; } - smb_fname = synthetic_smb_fname(talloc_tos(), plist, NULL, NULL, 0); + smb_fname = synthetic_smb_fname(talloc_tos(), + plist, + NULL, + NULL, + 0); if (smb_fname == NULL) { ok = false; goto out;