From: Ralph Boehme Date: Fri, 21 Jul 2017 13:34:02 +0000 (+0200) Subject: s3/smbd: modernize a DEBUG statement X-Git-Tag: tevent-0.9.34~130 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef7cabb4185cfca7da398cd1af5c8c25c9977d62;p=thirdparty%2Fsamba.git s3/smbd: modernize a DEBUG statement Signed-off-by: Ralph Boehme Reviewed-by: Stefan Metzmacher --- diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c index e6c6decf535..4e31f9d2146 100644 --- a/source3/smbd/smb2_create.c +++ b/source3/smbd/smb2_create.c @@ -1401,8 +1401,7 @@ static struct tevent_req *smbd_smb2_create_send(TALLOC_CTX *mem_ctx, state->out_file_id_persistent = result->op->global->open_persistent_id; state->out_file_id_volatile = result->op->global->open_volatile_id; - DEBUG(10,("smbd_smb2_create_send: %s - %s\n", - fsp_str_dbg(result), fsp_fnum_dbg(result))); + DBG_DEBUG("%s - %s\n", fsp_str_dbg(result), fsp_fnum_dbg(result)); tevent_req_done(req); return tevent_req_post(req, state->ev);