From: Volker Lendecke Date: Mon, 27 Oct 2025 12:23:29 +0000 (+0100) Subject: smbd: Modernize DEBUGs X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb2f3c29b5b1ada52a5811545ed66995bdd9afda;p=thirdparty%2Fsamba.git smbd: Modernize DEBUGs Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index d485ba49496..c730adf11ad 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -6824,7 +6824,7 @@ NTSTATUS create_file_default(connection_struct *conn, } done: - DEBUG(10, ("create_file: info=%d\n", info)); + DBG_DEBUG("info=%d\n", info); *result = fsp; if (pinfo != NULL) { @@ -6833,7 +6833,7 @@ NTSTATUS create_file_default(connection_struct *conn, return NT_STATUS_OK; fail: - DEBUG(10, ("create_file: %s\n", nt_errstr(status))); + DBG_DEBUG("%s\n", nt_errstr(status)); if (fsp != NULL) { close_file_free(req, &fsp, ERROR_CLOSE);