From 2b4bb9b7a127dbaae9af8b1d48e56986ef70b974 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 22 Jul 2011 15:38:38 +0200 Subject: s3:smbclient: print nt status code when smb echo fails --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') 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(); } -- cgit