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

tridge at samba.org tridge at samba.org
Tue Mar 21 11:38:58 GMT 2006


Author: tridge
Date: 2006-03-21 11:38:57 +0000 (Tue, 21 Mar 2006)
New Revision: 14613

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

Log:

fixed ntvfs_notify_next()


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-21 11:37:11 UTC (rev 14612)
+++ branches/SAMBA_4_0/source/ntvfs/ntvfs_interface.c	2006-03-21 11:38:57 UTC (rev 14613)
@@ -623,7 +623,7 @@
 	if (!ntvfs->next || !ntvfs->next->ops->notify) {
 		return NT_STATUS_NOT_IMPLEMENTED;
 	}
-	return ntvfs->next->ops->notify(ntvfs, req, info);
+	return ntvfs->next->ops->notify(ntvfs->next, req, info);
 }
 
 /* cancel - called to cancel an outstanding async request */



More information about the samba-cvs mailing list