From f7bf27cbf401cfd23416a1e8f856715f0311c854 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Sun, 3 May 2020 15:04:14 +0200 Subject: [PATCH] vfs_fruit: realign synthetic_smb_fname() args in fruit_get_bandsize() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_fruit.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; -- 2.47.3