summaryrefslogtreecommitdiff
path: root/source3/smbd/service.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-11-06 21:44:33 +0000
committerJeremy Allison <jra@samba.org>2000-11-06 21:44:33 +0000
commit6d36edaf437a9d109fe3bfff26c9f6a3b584aaf6 (patch)
treececea73e47e68eafd505e13ad31ed4805f0236f4 /source3/smbd/service.c
parentaae30b679981e019aa36d83beff83d30b937a16d (diff)
downloadsamba-6d36edaf437a9d109fe3bfff26c9f6a3b584aaf6.tar.gz
samba-6d36edaf437a9d109fe3bfff26c9f6a3b584aaf6.tar.bz2
samba-6d36edaf437a9d109fe3bfff26c9f6a3b584aaf6.zip
Added a VFS version return to init call. Allows smbd to fail an init if
versions don't match. Jeremy. (This used to be commit d0fbb4f5d999abade8930cc6fff231a2af6cccfb)
Diffstat (limited to 'source3/smbd/service.c')
-rw-r--r--source3/smbd/service.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c
index b86f3beadd..fcdd9a376b 100644
--- a/source3/smbd/service.c
+++ b/source3/smbd/service.c
@@ -485,6 +485,8 @@ connection_struct *make_connection(char *service,char *user,char *password, int
/* Loadable object file */
if (!vfs_init_custom(conn)) {
+ DEBUG(0, ("vfs_init failed\n"));
+ conn_free(conn);
return NULL;
}
#else