From 6930afc9f4e613a660bbe716e849f5db7276491c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Baumbach?= Date: Wed, 29 Jun 2011 16:53:57 +0200 Subject: [PATCH] examples/VFS: fix shadow_copy_test.c in reference to shadow_copy changes Signed-off-by: Michael Adam --- examples/VFS/shadow_copy_test.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/examples/VFS/shadow_copy_test.c b/examples/VFS/shadow_copy_test.c index d4da23846fc..a47d2ee19b4 100644 --- a/examples/VFS/shadow_copy_test.c +++ b/examples/VFS/shadow_copy_test.c @@ -19,6 +19,8 @@ */ #include "includes.h" +#include "ntioctl.h" +#include "smbd/proto.h" #undef DBGC_CLASS #define DBGC_CLASS DBGC_VFS @@ -50,7 +52,10 @@ Directories are always displayed... */ -static int test_get_shadow_copy_data(vfs_handle_struct *handle, files_struct *fsp, SHADOW_COPY_DATA *shadow_copy_data, bool labels) +static int test_get_shadow_copy_data(vfs_handle_struct *handle, + files_struct *fsp, + struct shadow_copy_data *shadow_copy_data, + bool labels) { uint32 num = 3; uint32 i; @@ -59,7 +64,7 @@ static int test_get_shadow_copy_data(vfs_handle_struct *handle, files_struct *fs if (labels) { if (num) { - shadow_copy_data->labels = talloc_zero_array(shadow_copy_data->mem_ctx,SHADOW_COPY_LABEL,num); + shadow_copy_data->labels = talloc_zero_array(shadow_copy_data,SHADOW_COPY_LABEL,num); } else { shadow_copy_data->labels = NULL; } @@ -81,5 +86,7 @@ static struct vfs_fn_pointers vfs_test_shadow_copy_fns = { NTSTATUS vfs_shadow_copy_test_init(void) { - return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "shadow_copy_test", &vfs_test_shadow_copy_fns); + return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, + "shadow_copy_test", + &vfs_test_shadow_copy_fns); } -- 2.11.4.GIT