diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-08 11:13:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:52:37 -0500 |
commit | 30b4212a1a1101fee3ee8c9fe8fdc989bf9dc2b6 (patch) | |
tree | e8f7638a8dc08ae627382503fd30f95284686f0d | |
parent | 1562ecf221d9f5f591e344d6e5c6f19e802b089e (diff) | |
download | samba-30b4212a1a1101fee3ee8c9fe8fdc989bf9dc2b6.tar.gz samba-30b4212a1a1101fee3ee8c9fe8fdc989bf9dc2b6.tar.bz2 samba-30b4212a1a1101fee3ee8c9fe8fdc989bf9dc2b6.zip |
r14037: add ntvfs_next_notify()
metze
(This used to be commit d4c0f8900e908bc70fd66059fc667432329abf89)
-rw-r--r-- | source4/ntvfs/ntvfs_interface.c | 12 |
1 files changed, 12 insertions, 0 deletions
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); +} |