diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-10-24 15:45:23 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-10-24 15:45:23 +0000 |
commit | f861aab464e5344d0be1ea68272db832a25223b5 (patch) | |
tree | a2ed5943320c19d86da71eb8d521143776f7ddcd /examples | |
parent | 515e6a268e97a5d512535fd95138fa64ab46280e (diff) | |
download | samba-f861aab464e5344d0be1ea68272db832a25223b5.tar.gz samba-f861aab464e5344d0be1ea68272db832a25223b5.tar.bz2 samba-f861aab464e5344d0be1ea68272db832a25223b5.zip |
Give recycle 3 arguments as required by the VFS interface (patch by metze)
(This used to be commit 15b9430d9ce43ba7e08338ab9fab657d6763dc02)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/VFS/recycle.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/VFS/recycle.c b/examples/VFS/recycle.c index a56619af31..b59cb92a28 100644 --- a/examples/VFS/recycle.c +++ b/examples/VFS/recycle.c @@ -84,7 +84,8 @@ static BOOL check_bool_param(const char *value) * * @retval initialised vfs_op_tuple array **/ -vfs_op_tuple *vfs_init(int *vfs_version, struct vfs_ops *def_vfs_ops) +vfs_op_tuple *vfs_init(int *vfs_version, struct vfs_ops *def_vfs_ops, + struct smb_vfs_handle_struct *vfs_handle) { DEBUG(10, ("Initializing VFS module recycle\n")); *vfs_version = SMB_VFS_INTERFACE_VERSION; |