summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-04-28 00:49:49 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-04-28 00:49:49 +0000
commit29ba1e163f85aeaa3cd48a13e4f0a039fa80e7b0 (patch)
tree94e08898df14ae45622842bf55b5652f5b19514c /examples
parent5e4e6a6ed08f1b4fe97bbd91f983039143cc9939 (diff)
downloadsamba-29ba1e163f85aeaa3cd48a13e4f0a039fa80e7b0.tar.gz
samba-29ba1e163f85aeaa3cd48a13e4f0a039fa80e7b0.tar.xz
samba-29ba1e163f85aeaa3cd48a13e4f0a039fa80e7b0.zip
Update for the new modules system. Also, use Makefile rather then Makefile.in
because we don't generate Makefile from configure anymore.
Diffstat (limited to 'examples')
-rw-r--r--examples/VFS/Makefile (renamed from examples/VFS/Makefile.in)7
-rw-r--r--examples/VFS/skel.c8
2 files changed, 6 insertions, 9 deletions
diff --git a/examples/VFS/Makefile.in b/examples/VFS/Makefile
index 30019caccd1..ac5a93b49ba 100644
--- a/examples/VFS/Makefile.in
+++ b/examples/VFS/Makefile
@@ -1,7 +1,6 @@
-CC = @CC@
-CFLAGS = @CFLAGS@
-CPPFLAGS = @CPPFLAGS@
-LDFLAGS = @LDFLAGS@
+CFLAGS =
+CPPFLAGS =
+LDFLAGS =
LDSHFLAGS = -shared
srcdir = ../../source/
FLAGS = $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper -I. $(CPPFLAGS) -I$(srcdir)
diff --git a/examples/VFS/skel.c b/examples/VFS/skel.c
index b9376828225..f19323480fc 100644
--- a/examples/VFS/skel.c
+++ b/examples/VFS/skel.c
@@ -437,12 +437,11 @@ static vfs_op_tuple skel_ops[] = {
/* VFS initialisation - return initialized vfs_op_tuple array back to Samba */
-vfs_op_tuple *vfs_init(int *vfs_version, struct vfs_ops *def_vfs_ops,
+static vfs_op_tuple *skel_init(const struct vfs_ops *def_vfs_ops,
struct smb_vfs_handle_struct *vfs_handle)
{
DEBUG(3, ("Initialising default vfs hooks\n"));
- *vfs_version = SMB_VFS_INTERFACE_VERSION;
memcpy(&default_vfs_ops, def_vfs_ops, sizeof(struct vfs_ops));
/* Remember vfs_handle for further allocation and referencing of private
@@ -452,8 +451,7 @@ vfs_op_tuple *vfs_init(int *vfs_version, struct vfs_ops *def_vfs_ops,
return skel_ops;
}
-/* VFS finalization function */
-void vfs_done(connection_struct *conn)
+int init_module(void)
{
- DEBUG(3, ("Finalizing default vfs hooks\n"));
+ return smb_register_vfs("skel", skel_init, SMB_VFS_INTERFACE_VERSION);
}