summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-11-10 04:28:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:46:01 -0500
commit6481a752a2bdef8ad08923cb0d9999b3462210cb (patch)
treef4250b55a18a54265e77492b1c9bbf3f026305b9 /source4
parent79b3a3afb51947437edbf6804a18a99526e3e281 (diff)
downloadsamba-6481a752a2bdef8ad08923cb0d9999b3462210cb.tar.gz
samba-6481a752a2bdef8ad08923cb0d9999b3462210cb.tar.bz2
samba-6481a752a2bdef8ad08923cb0d9999b3462210cb.zip
r11628: fixed a valgrind error in the rpc echo test
(This used to be commit d340ea7906c091a1400d3e73a8f530174aa8a965)
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/rpc/echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/echo.c b/source4/torture/rpc/echo.c
index 1ce4a20008..afab64565d 100644
--- a/source4/torture/rpc/echo.c
+++ b/source4/torture/rpc/echo.c
@@ -358,7 +358,7 @@ static BOOL test_surrounding(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
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) {