|
|
Author: tridge
Date: 2006-03-21 11:40:38 +0000 (Tue, 21 Mar 2006)
New Revision: 14615
WebSVN:
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14615
Log:
add notify to unixuid ntvfs module
Modified:
branches/SAMBA_4_0/source/ntvfs/unixuid/vfs_unixuid.c
Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/unixuid/vfs_unixuid.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/unixuid/vfs_unixuid.c 2006-03-21
11:39:48 UTC (rev 14614)
+++ branches/SAMBA_4_0/source/ntvfs/unixuid/vfs_unixuid.c 2006-03-21
11:40:38 UTC (rev 14615)
@@ -516,6 +516,19 @@
}
/*
+ 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 @@
ops.logoff = unixuid_logoff;
ops.async_setup = unixuid_async_setup;
ops.cancel = unixuid_cancel;
+ ops.notify = unixuid_notify;
ops.name = "unixuid";
|
|