diff options
Diffstat (limited to 'source4/ntvfs/ntvfs_base.c')
-rw-r--r-- | source4/ntvfs/ntvfs_base.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source4/ntvfs/ntvfs_base.c b/source4/ntvfs/ntvfs_base.c index b8aeed419cf..9cb8293cbc3 100644 --- a/source4/ntvfs/ntvfs_base.c +++ b/source4/ntvfs/ntvfs_base.c @@ -158,3 +158,16 @@ NTSTATUS ntvfs_init_connection(struct smbsrv_request *req, enum ntvfs_type type) return NT_STATUS_OK; } + +NTSTATUS ntvfs_init(void) +{ + init_module_fn static_init[] = STATIC_NTVFS_MODULES; + init_module_fn *shared_init = load_samba_modules(NULL, "ntvfs"); + + run_init_functions(static_init); + run_init_functions(shared_init); + + talloc_free(shared_init); + + return NT_STATUS_OK; +} |