summaryrefslogtreecommitdiff
path: root/source3/smbd/service.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbd/service.c')
-rw-r--r--source3/smbd/service.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c
index 8202294293..5c7929d1b6 100644
--- a/source3/smbd/service.c
+++ b/source3/smbd/service.c
@@ -350,11 +350,18 @@ connection_struct *make_connection(char *service,char *user,char *password, int
if (*lp_vfsobj(SNUM(conn))) {
+#ifdef HAVE_LIBDL
+
/* Loadable object file */
if (vfs_init_custom(conn) < 0) {
return NULL;
}
+#else
+ DEBUG(0, ("No libdl present - cannot use VFS objects\n"));
+ conn_free(conn);
+ return NULL;
+#endif
} else {