From: Ralph Boehme Date: Sun, 3 May 2020 13:05:25 +0000 (+0200) Subject: vfs_virusfilter: realign synthetic_smb_fname() args in quarantine_create_dir() X-Git-Tag: ldb-2.2.0~708 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e78acc76e87f95a2ae3a278c9bfe462b5fbb21e3;p=thirdparty%2Fsamba.git vfs_virusfilter: realign synthetic_smb_fname() args in quarantine_create_dir() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- 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; }