summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-11-06 21:33:49 +0000
committerJeremy Allison <jra@samba.org>2000-11-06 21:33:49 +0000
commitaae30b679981e019aa36d83beff83d30b937a16d (patch)
tree546758bdfa5fc263a5b03958050fc33d2631645e /examples
parent5ba7235f0f3bd5ec08e3798795af0c56b1f0e5f5 (diff)
downloadsamba-aae30b679981e019aa36d83beff83d30b937a16d.tar.gz
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 b29ff816734c0424f69124feb316da13f2e094f7)
Diffstat (limited to 'examples')
-rw-r--r--examples/VFS/skel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/VFS/skel.c b/examples/VFS/skel.c
index d1ec5b9180f..9bb84fe2b1c 100644
--- a/examples/VFS/skel.c
+++ b/examples/VFS/skel.c
@@ -132,8 +132,9 @@ struct vfs_ops skel_ops = {
/* VFS initialisation - return vfs_ops function pointer structure */
-struct vfs_ops *vfs_init(void)
+struct vfs_ops *vfs_init(int *vfs_version)
{
+ *vfs_version = SMB_VFS_INTERFACE_VERSION;
return(&skel_ops);
}