svn commit: samba r12602 - in branches/SAMBA_4_0/source/libcli/wrepl: .

metze at samba.org metze at samba.org
Fri Dec 30 10:45:44 GMT 2005


Author: metze
Date: 2005-12-30 10:45:43 +0000 (Fri, 30 Dec 2005)
New Revision: 12602

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

Log:
fix compiler warning

metze
Modified:
   branches/SAMBA_4_0/source/libcli/wrepl/winsrepl.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/wrepl/winsrepl.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/wrepl/winsrepl.c	2005-12-30 08:57:33 UTC (rev 12601)
+++ branches/SAMBA_4_0/source/libcli/wrepl/winsrepl.c	2005-12-30 10:45:43 UTC (rev 12602)
@@ -193,8 +193,8 @@
 */
 struct wrepl_socket *wrepl_socket_merge(TALLOC_CTX *mem_ctx, 
 				        struct event_context *event_ctx,
-					struct socket_context *socket,
-					struct packet_context *packet)
+					struct socket_context *sock,
+					struct packet_context *pack)
 {
 	struct wrepl_socket *wrepl_socket;
 
@@ -204,7 +204,7 @@
 	wrepl_socket->event.ctx = talloc_reference(wrepl_socket, event_ctx);
 	if (wrepl_socket->event.ctx == NULL) goto failed;
 
-	wrepl_socket->sock = socket;
+	wrepl_socket->sock = sock;
 	talloc_steal(wrepl_socket, wrepl_socket->sock);
 
 
@@ -218,7 +218,7 @@
 		goto failed;
 	}
 
-	wrepl_socket->packet = packet;
+	wrepl_socket->packet = pack;
 	talloc_steal(wrepl_socket, wrepl_socket->packet);
 	packet_set_private(wrepl_socket->packet, wrepl_socket);
 	packet_set_socket(wrepl_socket->packet, wrepl_socket->sock);



More information about the samba-cvs mailing list