From: Volker Lendecke Date: Thu, 23 Oct 2025 17:24:42 +0000 (+0200) Subject: smbd: Modernize a DEBUG X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00331d773c2cc3a6fc3a428ee46e8ccdc6097d66;p=thirdparty%2Fsamba.git smbd: Modernize a DEBUG Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- diff --git a/source3/smbd/files.c b/source3/smbd/files.c index 11609522fb7..3c03f7b8dd3 100644 --- a/source3/smbd/files.c +++ b/source3/smbd/files.c @@ -2607,9 +2607,7 @@ static NTSTATUS file_name_hash(connection_struct *conn, key = (TDB_DATA) { .dptr = (uint8_t *)fullpath, .dsize = len+1 }; *p_name_hash = tdb_jenkins_hash(&key); - DEBUG(10,("file_name_hash: %s hash 0x%x\n", - fullpath, - (unsigned int)*p_name_hash )); + DBG_DEBUG("%s hash 0x%" PRIx32 "\n", fullpath, *p_name_hash); TALLOC_FREE(to_free); return NT_STATUS_OK;