From 830b7447107f5fe71d9947cc0f099dce4de5d53e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 21 Mar 2006 11:40:38 +0000 Subject: r14615: add notify to unixuid ntvfs module (This used to be commit 79af976d189798bb92f5909237202ca18db1789f) --- source4/ntvfs/unixuid/vfs_unixuid.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'source4/ntvfs/unixuid') diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c index 9f6a4f9cb7..545fe67827 100644 --- a/source4/ntvfs/unixuid/vfs_unixuid.c +++ b/source4/ntvfs/unixuid/vfs_unixuid.c @@ -515,6 +515,19 @@ static NTSTATUS unixuid_cancel(struct ntvfs_module_context *ntvfs, return status; } +/* + change notify +*/ +static NTSTATUS unixuid_notify(struct ntvfs_module_context *ntvfs, + struct ntvfs_request *req, struct smb_notify *info) +{ + NTSTATUS status; + + PASS_THRU_REQ(ntvfs, req, notify, (ntvfs, req, info)); + + return status; +} + /* lock a byte range */ @@ -660,6 +673,7 @@ NTSTATUS ntvfs_unixuid_init(void) ops.logoff = unixuid_logoff; ops.async_setup = unixuid_async_setup; ops.cancel = unixuid_cancel; + ops.notify = unixuid_notify; ops.name = "unixuid"; -- cgit