summaryrefslogtreecommitdiffstats
path: root/examples/VFS
diff options
context:
space:
mode:
authorBjörn Baumbach <bb@sernet.de>2011-06-29 16:57:27 +0200
committerMichael Adam <obnox@samba.org>2011-06-30 15:41:24 +0200
commit576cb574a15158a33feab48be3c5ed05721f28fc (patch)
tree663587128deda56da049ebecbb8a0d9b36530709 /examples/VFS
parent776672805c35bb2db760194730c46b96019e0da1 (diff)
downloadsamba-576cb574a15158a33feab48be3c5ed05721f28fc.tar.gz
samba-576cb574a15158a33feab48be3c5ed05721f28fc.tar.xz
samba-576cb574a15158a33feab48be3c5ed05721f28fc.zip
examples/VFS: fix skel_transparent.c in reference to shadow_copy changes
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'examples/VFS')
-rw-r--r--examples/VFS/skel_transparent.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c
index 7c91a615b1..c9fbc793ec 100644
--- a/examples/VFS/skel_transparent.c
+++ b/examples/VFS/skel_transparent.c
@@ -23,6 +23,7 @@
#include "includes.h"
+#include "smbd/proto.h"
/* PLEASE,PLEASE READ THE VFS MODULES CHAPTER OF THE
SAMBA DEVELOPERS GUIDE!!!!!!
@@ -64,7 +65,7 @@ static int skel_set_quota(vfs_handle_struct *handle, enum SMB_QUOTA_TYPE qtype,
return SMB_VFS_NEXT_SET_QUOTA(handle, qtype, id, dq);
}
-static int skel_get_shadow_copy_data(vfs_handle_struct *handle, files_struct *fsp, SHADOW_COPY_DATA *shadow_copy_data, bool labels)
+static int skel_get_shadow_copy_data(vfs_handle_struct *handle, files_struct *fsp, struct shadow_copy_data *shadow_copy_data, bool labels)
{
return SMB_VFS_NEXT_GET_SHADOW_COPY_DATA(handle, fsp, shadow_copy_data, labels);
}