From 1bd3c0aefbaa3ee78b9a4bcae97d2a4b5d09d76b Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Fri, 11 May 2012 19:03:32 +0200 Subject: s3:smbd/smb2_getinfo add a debug message like the ones in the other calls that check for max sizes Signed-off-by: Stefan Metzmacher --- source3/smbd/smb2_getinfo.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/smbd/smb2_getinfo.c') diff --git a/source3/smbd/smb2_getinfo.c b/source3/smbd/smb2_getinfo.c index e8d918df38..0f5936524f 100644 --- a/source3/smbd/smb2_getinfo.c +++ b/source3/smbd/smb2_getinfo.c @@ -91,9 +91,17 @@ NTSTATUS smbd_smb2_request_process_getinfo(struct smbd_smb2_request *req) in_input_buffer.length = in_input_buffer_length; if (in_input_buffer.length > req->sconn->smb2.max_trans) { + DEBUG(2,("smbd_smb2_request_process_getinfo: " + "client ignored max trans: %s: 0x%08X: 0x%08X\n", + __location__, in_input_buffer.length, + req->sconn->smb2.max_trans)); return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER); } if (in_output_buffer_length > req->sconn->smb2.max_trans) { + DEBUG(2,("smbd_smb2_request_process_getinfo: " + "client ignored max trans: %s: 0x%08X: 0x%08X\n", + __location__, in_output_buffer_length, + req->sconn->smb2.max_trans)); return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER); } -- cgit