From e78acc76e87f95a2ae3a278c9bfe462b5fbb21e3 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Sun, 3 May 2020 15:05:25 +0200 Subject: [PATCH] vfs_virusfilter: realign synthetic_smb_fname() args in quarantine_create_dir() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/modules/vfs_virusfilter.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source3/modules/vfs_virusfilter.c b/source3/modules/vfs_virusfilter.c index ddac0c9a293..46dbfa1b089 100644 --- a/source3/modules/vfs_virusfilter.c +++ b/source3/modules/vfs_virusfilter.c @@ -153,8 +153,11 @@ static bool quarantine_create_dir( DBG_INFO("quarantine: creating new dir %s\n", new_dir); - smb_fname = synthetic_smb_fname(talloc_tos(), new_dir, - NULL, NULL, 0); + smb_fname = synthetic_smb_fname(talloc_tos(), + new_dir, + NULL, + NULL, + 0); if (smb_fname == NULL) { goto done; } -- 2.47.3