summaryrefslogtreecommitdiff
path: root/source/smbd/service.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-10-28 00:16:51 +0000
committerJeremy Allison <jra@samba.org>2000-10-28 00:16:51 +0000
commitb87c0dbc47b3328bac5682af887df87b737cb8d1 (patch)
treeec634740b90aa65bda29818553739dccfd5e7bbe /source/smbd/service.c
parentaf1190ceb755def51159d5ef7083177e292d2b97 (diff)
downloadsamba-b87c0dbc47b3328bac5682af887df87b737cb8d1.tar.gz
Patch from Brad Sahr <bsahr@macromedia.com> for WITH_VFS.
Jeremy
Diffstat (limited to 'source/smbd/service.c')
-rw-r--r--source/smbd/service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/smbd/service.c b/source/smbd/service.c
index 9f2e15aecae..c4b94a417ea 100644
--- a/source/smbd/service.c
+++ b/source/smbd/service.c
@@ -478,7 +478,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
/* Initialise VFS function pointers */
-#if USING_VFS
+#if WITH_VFS
if (*lp_vfsobj(SNUM(conn))) {
@@ -496,9 +496,9 @@ connection_struct *make_connection(char *service,char *user,char *password, int
#endif /* HAVE_LIBDL */
} else /* Normal share - initialise with disk access functions */
-#else /* USING_VFS */
+#else /* WITH_VFS */
vfs_init_default(conn);
-#endif /* USING_VFS */
+#endif /* WITH_VFS */
/* execute any "root preexec = " line */
if (*lp_rootpreexec(SNUM(conn))) {