From: Anoop C S Date: Wed, 10 Sep 2025 11:45:59 +0000 (+0530) Subject: source3/passdb: Follow up to the fix for CID 1508970 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=262ae87665499fa546bb79f93e264bc696567392;p=thirdparty%2Fsamba.git source3/passdb: Follow up to the fix for CID 1508970 Fixing another occurrence for the same CID in the same DEBUG statement. See the previous commit c25a5a26a1cba698420fb64e23bee3b52540b21b. Signed-off-by: Anoop C S Reviewed-by: Volker Lendecke Autobuild-User(master): Anoop C S Autobuild-Date(master): Wed Sep 10 15:23:08 UTC 2025 on atb-devel-224 --- diff --git a/source3/passdb/login_cache.c b/source3/passdb/login_cache.c index e4f23f0caba..4f7262a6834 100644 --- a/source3/passdb/login_cache.c +++ b/source3/passdb/login_cache.c @@ -116,8 +116,8 @@ bool login_cache_read(struct samu *sampass, struct login_cache *entry) SAFE_FREE(databuf.dptr); - DEBUG(5, ("Found login cache entry: timestamp %12u, flags 0x%x, count %d, time %12jd\n", - (unsigned int)entry->entry_timestamp, entry->acct_ctrl, + DEBUG(5, ("Found login cache entry: timestamp %12jd, flags 0x%x, count %d, time %12jd\n", + (intmax_t)entry->entry_timestamp, entry->acct_ctrl, entry->bad_password_count, (intmax_t)entry->bad_password_time)); return true; }