From: Ralph Boehme Date: Wed, 30 Oct 2019 13:23:20 +0000 (+0100) Subject: s3:smb2_server: modernize a debug statement X-Git-Tag: talloc-2.3.1~204 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcf51b5aa58752ddfa4fc8814c7432e34fef4330;p=thirdparty%2Fsamba.git s3:smb2_server: modernize a debug statement Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index 5a98a2e82d4..416ef00b74f 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -3149,12 +3149,13 @@ NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req, struct iovec *outdyn_v; uint32_t next_command_ofs; - DEBUG(10,("smbd_smb2_request_done_ex: " - "idx[%d] status[%s] body[%u] dyn[%s:%u] at %s\n", - req->current_idx, nt_errstr(status), (unsigned int)body.length, - dyn ? "yes": "no", + DBG_DEBUG("idx[%d] status[%s] body[%u] dyn[%s:%u] at %s\n", + req->current_idx, + nt_errstr(status), + (unsigned int)body.length, + dyn ? "yes" : "no", (unsigned int)(dyn ? dyn->length : 0), - location)); + location); if (body.length < 2) { return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);