diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-04-03 13:23:43 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-03 14:25:12 +1000 |
commit | 8ef60901ce84ac90769de8e6f1369e10bf9b1b99 (patch) | |
tree | 4553815b178ab1e7b63fb1479168b3c13923d587 /source3 | |
parent | c363815809b4f6ff06f42baddaf4545de4cb9217 (diff) | |
download | samba-8ef60901ce84ac90769de8e6f1369e10bf9b1b99.tar.gz samba-8ef60901ce84ac90769de8e6f1369e10bf9b1b99.tar.bz2 samba-8ef60901ce84ac90769de8e6f1369e10bf9b1b99.zip |
s3-vfs: Use new smb_load_module for better diagnostics
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 4c5e52be1b..cbefb40659 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -167,7 +167,7 @@ bool vfs_init_custom(connection_struct *conn, const char *vfs_object) DEBUG(5, ("vfs module [%s] not loaded - trying to load...\n", vfs_object)); - status = smb_probe_module("vfs", module_path); + status = smb_load_module("vfs", module_path); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("error probing vfs module '%s': %s\n", module_path, nt_errstr(status))); |