summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/client/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 836bc56553..8c797e5e0e 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -5024,8 +5024,8 @@ static void readline_callback(void)
memset(garbage, 0xf0, sizeof(garbage));
status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
if (!NT_STATUS_IS_OK(status)) {
- DEBUG(0, ("SMBecho failed. Maybe server has closed "
- "the connection\n"));
+ DEBUG(0, ("SMBecho failed (%s). Maybe server has closed "
+ "the connection\n", nt_errstr(status)));
finished = true;
smb_readline_done();
}