svn commit: samba r14037 - in branches/SAMBA_4_0/source/ntvfs: .

metze at samba.org metze at samba.org
Wed Mar 8 11:13:13 GMT 2006


Author: metze
Date: 2006-03-08 11:13:13 +0000 (Wed, 08 Mar 2006)
New Revision: 14037

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14037

Log:
add ntvfs_next_notify()

metze
Modified:
   branches/SAMBA_4_0/source/ntvfs/ntvfs_interface.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/ntvfs_interface.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/ntvfs_interface.c	2006-03-08 08:51:19 UTC (rev 14036)
+++ branches/SAMBA_4_0/source/ntvfs/ntvfs_interface.c	2006-03-08 11:13:13 UTC (rev 14037)
@@ -629,3 +629,15 @@
 	}
 	return ntvfs->next->ops->cancel(ntvfs->next, req);
 }
+
+/*
+  change notify request
+*/
+_PUBLIC_ NTSTATUS ntvfs_next_notify(struct ntvfs_module_context *ntvfs,
+				    struct smbsrv_request *req, struct smb_notify *info)
+{
+	if (!ntvfs->next || !ntvfs->next->ops->notify) {
+		return NT_STATUS_NOT_IMPLEMENTED;
+	}
+	return ntvfs->next->ops->notify(ntvfs, req, info);
+}



More information about the samba-cvs mailing list