svn commit: samba r11628 - in branches/SAMBA_4_0/source/torture/rpc: .

tridge at samba.org tridge at samba.org
Thu Nov 10 04:28:55 GMT 2005


Author: tridge
Date: 2005-11-10 04:28:55 +0000 (Thu, 10 Nov 2005)
New Revision: 11628

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

Log:

fixed a valgrind error in the rpc echo test

Modified:
   branches/SAMBA_4_0/source/torture/rpc/echo.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/rpc/echo.c
===================================================================
--- branches/SAMBA_4_0/source/torture/rpc/echo.c	2005-11-10 04:26:00 UTC (rev 11627)
+++ branches/SAMBA_4_0/source/torture/rpc/echo.c	2005-11-10 04:28:55 UTC (rev 11628)
@@ -358,7 +358,7 @@
 	status = dcerpc_echo_TestSurrounding(p, mem_ctx, &r);
 	if (!NT_STATUS_IS_OK(status)) {
 		printf("TestSurrounding failed - %s\n", nt_errstr(status));
-		ret = False;
+		return False;
 	}
 	
 	if (r.out.data->x != 2 * r.in.data->x) {



More information about the samba-cvs mailing list