]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:smb2_server: modernize a debug statement
authorRalph Boehme <slow@samba.org>
Wed, 30 Oct 2019 13:23:20 +0000 (14:23 +0100)
committerJeremy Allison <jra@samba.org>
Wed, 30 Oct 2019 17:20:30 +0000 (17:20 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/smbd/smb2_server.c

index 5a98a2e82d4d4e21b9f07ed4d28f966dffe15621..416ef00b74f07575c86452617c5a663cf94c58c2 100644 (file)
@@ -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);