From 30b4212a1a1101fee3ee8c9fe8fdc989bf9dc2b6 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 8 Mar 2006 11:13:13 +0000 Subject: r14037: add ntvfs_next_notify() metze (This used to be commit d4c0f8900e908bc70fd66059fc667432329abf89) --- source4/ntvfs/ntvfs_interface.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'source4/ntvfs/ntvfs_interface.c') diff --git a/source4/ntvfs/ntvfs_interface.c b/source4/ntvfs/ntvfs_interface.c index be536d5eef..a3a605c0c8 100644 --- a/source4/ntvfs/ntvfs_interface.c +++ b/source4/ntvfs/ntvfs_interface.c @@ -629,3 +629,15 @@ _PUBLIC_ NTSTATUS ntvfs_next_cancel(struct ntvfs_module_context *ntvfs, } return ntvfs->next->ops->cancel(ntvfs->next, req); } + +/* + change notify request +*/ +_PUBLIC_ NTSTATUS ntvfs_next_notify(struct ntvfs_module_context *ntvfs, + struct smbsrv_request *req, struct smb_notify *info) +{ + if (!ntvfs->next || !ntvfs->next->ops->notify) { + return NT_STATUS_NOT_IMPLEMENTED; + } + return ntvfs->next->ops->notify(ntvfs, req, info); +} -- cgit