From 9d8111fdc8fa5d72c02f9a892be0224c76179bf5 Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Fri, 4 Nov 2011 17:34:48 +0100 Subject: [PATCH] s3:smbd increase a debug level logging disconnected clients with level 1 swamps the logs (This fixes Bug #8585 Disconnecting clients swamp the logs) --- source3/smbd/process.c | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/source3/smbd/process.c b/source3/smbd/process.c index a337469..f8b3837 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -451,9 +451,12 @@ static NTSTATUS receive_smb_talloc(TALLOC_CTX *mem_ctx, status = receive_smb_raw_talloc(mem_ctx, sconn, sock, buffer, timeout, p_unread, &len); if (!NT_STATUS_IS_OK(status)) { - DEBUG(1, ("read_smb_length_return_keepalive failed for " - "client %s read error = %s.\n", - sconn->client_id.addr, nt_errstr(status))); + DEBUG(NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)?5:1, + ("receive_smb_raw_talloc failed for client %s " + "read error = %s.\n", + tsocket_address_string(sconn->remote_address, + talloc_tos()), + nt_errstr(status)) ); return status; } -- 1.7.1