diff options
Diffstat (limited to 'source3/smbd/notify.c')
-rw-r--r-- | source3/smbd/notify.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/smbd/notify.c b/source3/smbd/notify.c index 534ed8477b..5a78a726b7 100644 --- a/source3/smbd/notify.c +++ b/source3/smbd/notify.c @@ -548,12 +548,13 @@ struct sys_notify_context *sys_notify_context_create(connection_struct *conn, NTSTATUS sys_notify_watch(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) { - return SMB_VFS_NOTIFY_WATCH(ctx->conn, ctx, e, callback, private_data, - handle); + return SMB_VFS_NOTIFY_WATCH(ctx->conn, ctx, e, path, callback, + private_data, handle); } |