1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3-rpc_server: Added debug to see how much data has been read out.

Signed-off-by: Andreas Schneider <asn@cynapses.org>
This commit is contained in:
Simo Sorce 2010-06-16 09:03:37 -04:00 committed by Andreas Schneider
parent 5ccd7a56fa
commit 11721874c3

View File

@ -895,6 +895,10 @@ NTSTATUS np_read_recv(struct tevent_req *req, ssize_t *nread,
if (tevent_req_is_nterror(req, &status)) {
return status;
}
DEBUG(10, ("Received %d bytes. There is %smore data outstanding\n",
(int)state->nread, state->is_data_outstanding?"":"no "));
*nread = state->nread;
*is_data_outstanding = state->is_data_outstanding;
return NT_STATUS_OK;