diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-04-30 08:14:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:16:22 -0500 |
commit | b07582787769dbb56584afffc053599d284dbca9 (patch) | |
tree | 4d5ffaa81b8a096fcc08ccd37bbd3a0216c4d10a /source4 | |
parent | 7de3892df1240bb54294120787a683e6b1c50314 (diff) | |
download | samba-b07582787769dbb56584afffc053599d284dbca9.tar.gz samba-b07582787769dbb56584afffc053599d284dbca9.tar.bz2 samba-b07582787769dbb56584afffc053599d284dbca9.zip |
r6524: Fix the error we print when the RPC-ECHO test fails.
Andrew Bartlett
(This used to be commit 4fc2a056cd38de7b3e2bc972958b5c104ba57ba7)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/echo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/echo.c b/source4/torture/rpc/echo.c index da775f92fc..3ca2634a8d 100644 --- a/source4/torture/rpc/echo.c +++ b/source4/torture/rpc/echo.c @@ -260,7 +260,7 @@ static BOOL test_sleep(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx) i, nt_errstr(status)); ret = False; } else if (r[i].out.result != r[i].in.seconds) { - printf("Failed - Slept for %u seconds (but we said %u seconds and the reply takes only %u seconds)\n", + printf("Failed - Asked to sleep for %u seconds (server replied with %u seconds and the reply takes only %u seconds)\n", r[i].out.result, r[i].in.seconds, (uint_t)diff[i].tv_sec); ret = False; } else { |