From: Volker Lendecke Date: Sat, 31 Jan 2026 10:09:59 +0000 (+0100) Subject: smbd: Modernize a DEBUG X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8dd4321d81eeb867abcb1f44594a02a345726ce;p=thirdparty%2Fsamba.git smbd: Modernize a DEBUG Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- diff --git a/source3/smbd/smb1_reply.c b/source3/smbd/smb1_reply.c index 152b2641e16..5aee828b496 100644 --- a/source3/smbd/smb1_reply.c +++ b/source3/smbd/smb1_reply.c @@ -4740,8 +4740,11 @@ void reply_lseek(struct smb_request *req) reply_smb1_outbuf(req, 2, 0); SIVAL(req->outbuf,smb_vwv0,res); - DEBUG(3,("lseek %s ofs=%.0f newpos = %.0f mode=%d\n", - fsp_fnum_dbg(fsp), (double)startpos, (double)res, mode)); + DBG_NOTICE("lseek %s ofs=%ju newpos =%ju mode=%d\n", + fsp_fnum_dbg(fsp), + (uintmax_t)startpos, + (uintmax_t)res, + mode); END_PROFILE(SMBlseek); return;