From ac6417dfc6f0571dfb357d131222daf054abe7e6 Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Fri, 11 May 2012 19:01:43 +0200 Subject: s3:smbd/smb2_read improve debug message make the message similar to the ones in other paths Signed-off-by: Stefan Metzmacher --- source3/smbd/smb2_read.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/smbd/smb2_read.c b/source3/smbd/smb2_read.c index b36c3cb141..d69ead9a75 100644 --- a/source3/smbd/smb2_read.c +++ b/source3/smbd/smb2_read.c @@ -75,7 +75,8 @@ NTSTATUS smbd_smb2_request_process_read(struct smbd_smb2_request *req) /* check the max read size */ if (in_length > req->sconn->smb2.max_read) { - DEBUG(0,("here:%s: 0x%08X: 0x%08X\n", + DEBUG(2,("smbd_smb2_request_process_read: " + "client ignored max read: %s: 0x%08X: 0x%08X\n", __location__, in_length, req->sconn->smb2.max_read)); return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER); } -- cgit