summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBjörn Baumbach <bb@sernet.de>2011-06-29 16:57:27 +0200
committerKarolin Seeger <kseeger@samba.org>2011-07-26 21:51:35 +0200
commit0500907f6e69e37f510ded7a64580375b6020a4b (patch)
tree45c7a336b76f55fbbb27b2e2cc78892e71555aab /examples
parentfd17a432ff307d74a8791867f32de5b016cc56c1 (diff)
downloadsamba-0500907f6e69e37f510ded7a64580375b6020a4b.tar.gz
examples/VFS: fix skel_transparent.c in reference to shadow_copy changes
Signed-off-by: Michael Adam <obnox@samba.org> (cherry picked from commit d57a51093e526d7aac05f3d210ab7aee5e2036aa)
Diffstat (limited to 'examples')
-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 f06e02afe5f..37e6a702897 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);
}