From eb2f3c29b5b1ada52a5811545ed66995bdd9afda Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 27 Oct 2025 13:23:29 +0100 Subject: [PATCH] smbd: Modernize DEBUGs Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- source3/smbd/open.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.3