From 1bc92d1090cb26b66c84e46b76411e6481869866 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 23 Jul 2018 09:14:36 +0200 Subject: [PATCH] vfs_default: call smb_vfs_assert_all_fns() This module needs to implement every call. Signed-off-by: Stefan Metzmacher Reviewed-by: Ralph Boehme --- source3/modules/vfs_default.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 082b70f5a98..cbe505dd1d1 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -3000,6 +3000,12 @@ static struct vfs_fn_pointers vfs_default_fns = { static_decl_vfs; NTSTATUS vfs_default_init(TALLOC_CTX *ctx) { + /* + * Here we need to implement every call! + * + * As this is the end of the vfs module chain. + */ + smb_vfs_assert_all_fns(&vfs_default_fns, DEFAULT_VFS_MODULE_NAME); return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, DEFAULT_VFS_MODULE_NAME, &vfs_default_fns); } -- 2.34.1