r14615: add notify to unixuid ntvfs module
authorAndrew Tridgell <tridge@samba.org>
Tue, 21 Mar 2006 11:40:38 +0000 (11:40 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:59:02 +0000 (13:59 -0500)
(This used to be commit 79af976d189798bb92f5909237202ca18db1789f)

source4/ntvfs/unixuid/vfs_unixuid.c

index 9f6a4f9cb78264a7e60d2fa18c2ede7209296d22..545fe678270de43f3e1c6c71b712107a894ed64a 100644 (file)
@@ -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";