From 4319076ccaf3e6264207a88b88dea0fa63b31879 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 19 Mar 2012 21:57:50 +0100 Subject: s3: Pass "path" through vfs_notify_watch --- examples/VFS/skel_transparent.c | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'examples') diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index b38479003b..964ba6dc9c 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -357,12 +357,16 @@ static char *skel_realpath(vfs_handle_struct *handle, const char *path) return SMB_VFS_NEXT_REALPATH(handle, path); } -static NTSTATUS skel_notify_watch(struct vfs_handle_struct *handle, - struct sys_notify_context *ctx, struct notify_entry *e, - void (*callback)(struct sys_notify_context *ctx, void *private_data, struct notify_event *ev), - void *private_data, void *handle_p) -{ - return SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, callback, +static NTSTATUS skel_notify_watch( + struct vfs_handle_struct *handle, + struct sys_notify_context *ctx, + struct notify_entry *e, + const char *path, + void (*callback)(struct sys_notify_context *ctx, void *private_data, + struct notify_event *ev), + void *private_data, void *handle_p) +{ + return SMB_VFS_NEXT_NOTIFY_WATCH(handle, ctx, e, path, callback, private_data, handle_p); } -- cgit