summaryrefslogtreecommitdiff
path: root/source3/smbd/service.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-10-18 00:27:20 +0000
committerTim Potter <tpot@samba.org>2001-10-18 00:27:20 +0000
commitf0e0dd6507c355103c51058642f1e4245c573413 (patch)
tree3088b0c57bd1061b61fcc7bcf2d046106e71bce3 /source3/smbd/service.c
parent75746fde8d1e4fffe692839c9c2fe76ccfda729c (diff)
downloadsamba-f0e0dd6507c355103c51058642f1e4245c573413.tar.gz
samba-f0e0dd6507c355103c51058642f1e4245c573413.tar.bz2
samba-f0e0dd6507c355103c51058642f1e4245c573413.zip
Renamed vfs_init() to smbd_vfs_init() to allow vfs modules to compile.
(This used to be commit 7c3542ba8764be48b88255dd7f73ea6d87be10ac)
Diffstat (limited to 'source3/smbd/service.c')
-rw-r--r--source3/smbd/service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c
index 69283d3bf5..6f2c28d19c 100644
--- a/source3/smbd/service.c
+++ b/source3/smbd/service.c
@@ -551,7 +551,7 @@ connection_struct *make_connection(char *service,char *password,
}
/* Initialise VFS function pointers */
- if (!vfs_init(conn)) {
+ if (!smbd_vfs_init(conn)) {
DEBUG(0, ("vfs_init failed for service %s\n", lp_servicename(SNUM(conn))));
conn_free(conn);
return NULL;