summaryrefslogtreecommitdiff
path: root/source4/torture/rpc/echo.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-13 10:29:58 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-13 10:29:58 +0000
commit9cadbd577504396332ba488e2749649f3518d8c3 (patch)
treeb8eeb201cedada447096671975c2d46b9c619eac /source4/torture/rpc/echo.c
parent679520ac7376780074337ed25e1e1dfc6ad93d9e (diff)
downloadsamba-9cadbd577504396332ba488e2749649f3518d8c3.tar.gz
samba-9cadbd577504396332ba488e2749649f3518d8c3.tar.bz2
samba-9cadbd577504396332ba488e2749649f3518d8c3.zip
fixed rpcecho EchoData debug code
(This used to be commit 01cdcba5cdf742599f1ec1ad23c723523cd1e839)
Diffstat (limited to 'source4/torture/rpc/echo.c')
-rw-r--r--source4/torture/rpc/echo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/rpc/echo.c b/source4/torture/rpc/echo.c
index b8c2437e4b..c0416fdb8a 100644
--- a/source4/torture/rpc/echo.c
+++ b/source4/torture/rpc/echo.c
@@ -83,9 +83,9 @@ static BOOL test_echodata(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
printf("Bad data returned for len %d at offset %d\n",
len, i);
printf("in:\n");
- dump_data(0, data_in, MIN(len, 16));
+ dump_data(0, data_in+i, MIN(len-i, 16));
printf("out:\n");
- dump_data(0, data_out, MIN(len, 16));
+ dump_data(0, data_out+i, MIN(len-1, 16));
return False;
}
}