diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/smb2_find.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/smb2_find.c b/source3/smbd/smb2_find.c index 9c0d18b278..eb221183f6 100644 --- a/source3/smbd/smb2_find.c +++ b/source3/smbd/smb2_find.c @@ -278,6 +278,10 @@ static struct tevent_req *smbd_smb2_find_send(TALLOC_CTX *mem_ctx, } if (in_output_buffer_length > smb2req->sconn->smb2.max_trans) { + DEBUG(2,("smbd_smb2_find_send: " + "client ignored max trans:%s: 0x%08X: 0x%08X\n", + __location__, in_output_buffer_length, + smb2req->sconn->smb2.max_trans)); tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER); return tevent_req_post(req, ev); } |