diff options
-rw-r--r-- | source4/ntvfs/unixuid/vfs_unixuid.c | 14 |
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"; |