]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
winbindd: CID 1508963 Fixing print statement for time_t
authorRabinarayan Panigrahi <rapanigr@redhat.com>
Mon, 25 Aug 2025 07:09:10 +0000 (12:39 +0530)
committerVolker Lendecke <vl@samba.org>
Tue, 26 Aug 2025 15:40:41 +0000 (15:40 +0000)
Fixing DEBUG output for time_t to uintmax_t

Signed-off-by: Rabinarayan Panigrahi <rapanigr@redhat.com>
Reviewed-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Vinit Agnihotri <vagnihot@redhat.com>
Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Tue Aug 26 15:40:41 UTC 2025 on atb-devel-224

source3/winbindd/winbindd_cache.c

index 96fee6c4218957ece2920b282d99ca3df3c920e1..c1b56a5bfe462f0c37089a518d96badc9d3d9057 100644 (file)
@@ -532,8 +532,8 @@ bool wcache_store_seqnum(const char *domain_name, uint32_t seqnum,
                return false;
        }
 
-       DBG_DEBUG("wcache_store_seqnum: success [%s][%u @ %u]\n",
-                  domain_name, seqnum, (unsigned)last_seq_check);
+       DBG_DEBUG("wcache_store_seqnum: success [%s][%u @ %ju]\n",
+                  domain_name, seqnum, (uintmax_t)last_seq_check);
 
        return true;
 }