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

tridge at samba.org tridge at samba.org
Fri Oct 22 06:53:31 GMT 2004


Author: tridge
Date: 2004-10-22 06:53:18 +0000 (Fri, 22 Oct 2004)
New Revision: 3132

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/ntvfs/ipc&rev=3132&nolog=1

Log:
- fixed a type conflict found by talloc_array_p()

- use struct idr_context * in ipc code


Modified:
   branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c


Changeset:
Modified: branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c
===================================================================
--- branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c	2004-10-22 06:49:27 UTC (rev 3131)
+++ branches/SAMBA_4_0/source/ntvfs/ipc/vfs_ipc.c	2004-10-22 06:53:18 UTC (rev 3132)
@@ -31,7 +31,7 @@
    ipc$ connection. It needs to keep information about all open
    pipes */
 struct ipc_private {
-	void *idtree_fnum;
+	struct idr_context *idtree_fnum;
 
 	/* a list of open pipes */
 	struct pipe_state {
@@ -212,7 +212,7 @@
 	  finalised for Samba4
 	*/
 	ep_description.transport = NCACN_NP;
-	ep_description.options = talloc_array_p(req, char *, 2);
+	ep_description.options = talloc_array_p(req, const char *, 2);
 	ep_description.options[0] = p->pipe_name;
 	ep_description.options[1] = NULL;
 



More information about the samba-cvs mailing list