summaryrefslogtreecommitdiff
path: root/source4/ntvfs/unixuid
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-03-21 11:40:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:59:02 -0500
commit830b7447107f5fe71d9947cc0f099dce4de5d53e (patch)
tree57944b23668b7d848bd754a7334c9db17700eb16 /source4/ntvfs/unixuid
parent580e5a1a26f9e2ec2881fef2476f9ff2d26df814 (diff)
downloadsamba-830b7447107f5fe71d9947cc0f099dce4de5d53e.tar.gz
samba-830b7447107f5fe71d9947cc0f099dce4de5d53e.tar.bz2
samba-830b7447107f5fe71d9947cc0f099dce4de5d53e.zip
r14615: add notify to unixuid ntvfs module
(This used to be commit 79af976d189798bb92f5909237202ca18db1789f)
Diffstat (limited to 'source4/ntvfs/unixuid')
-rw-r--r--source4/ntvfs/unixuid/vfs_unixuid.c14
1 files changed, 14 insertions, 0 deletions
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
@@ -516,6 +516,19 @@ static NTSTATUS unixuid_cancel(struct ntvfs_module_context *ntvfs,
}
/*
+ 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
*/
static NTSTATUS unixuid_lock(struct ntvfs_module_context *ntvfs,
@@ -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";