The branch, master has been updated
via ddac5c999f4 winbindd: CID 1508963 Fixing print statement for time_t
via 3d102d8cef9 s3:eventlog: Fix print statement CID#1509023
from 7a19fde9260 auth:creds: Update the documentation for set_principal
and set_realm
https://git.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit ddac5c999f49db4fc6b31369b3180ab53642a205
Author: Rabinarayan Panigrahi <[email protected]>
Date: Mon Aug 25 12:39:10 2025 +0530
winbindd: CID 1508963 Fixing print statement for time_t
Fixing DEBUG output for time_t to uintmax_t
Signed-off-by: Rabinarayan Panigrahi <[email protected]>
Reviewed-by: Volker Lendecke <[email protected]>
Reviewed-by: Martin Schwenke <[email protected]>
Reviewed-by: Vinit Agnihotri <[email protected]>
Autobuild-User(master): Volker Lendecke <[email protected]>
Autobuild-Date(master): Tue Aug 26 15:40:41 UTC 2025 on atb-devel-224
commit 3d102d8cef93a0173d5169c10193df8e3c20b055
Author: Vinit Agnihotri <[email protected]>
Date: Thu Aug 21 14:17:50 2025 +0530
s3:eventlog: Fix print statement CID#1509023
Signed-off-by: Vinit Agnihotri <[email protected]>
Reviewed-by: Volker Lendecke <[email protected]>
Reviewed-by: Anoop C S <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
source3/lib/eventlog/eventlog.c | 4 ++--
source3/winbindd/winbindd_cache.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/lib/eventlog/eventlog.c b/source3/lib/eventlog/eventlog.c
index 031c7497b71..0edfb9861de 100644
--- a/source3/lib/eventlog/eventlog.c
+++ b/source3/lib/eventlog/eventlog.c
@@ -193,8 +193,8 @@ static bool make_way_for_eventlogs( TDB_CONTEXT * the_tdb,
int32_t needed,
nbytes = 0;
DEBUG( 3,
- ( "MaxSize [%d] Retention [%d] Current Time [%u] exp_time
[%u]\n",
- MaxSize, Retention, (unsigned int)current_time, (unsigned
int)exp_time ) );
+ ( "MaxSize [%d] Retention [%d] Current Time [%ju] exp_time
[%ju]\n",
+ MaxSize, Retention, (uintmax_t)current_time,
(uintmax_t)exp_time ) );
DEBUG( 3,
( "Start Record [%u] End Record [%u]\n",
(unsigned int)start_record,
diff --git a/source3/winbindd/winbindd_cache.c
b/source3/winbindd/winbindd_cache.c
index 96fee6c4218..c1b56a5bfe4 100644
--- a/source3/winbindd/winbindd_cache.c
+++ b/source3/winbindd/winbindd_cache.c
@@ -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;
}
--
Samba Shared Repository