From aa33b4d396abf47a2a45f982f28d054fb1dcb5c3 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Mon, 27 Feb 2023 21:04:22 +1100 Subject: [PATCH] Cast time_t's in debug output to long long. Should fix Coverity warning about truncation of 64bit time_t. --- auth-shadow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth-shadow.c b/auth-shadow.c index e1eb68bc3..b1e3aa9fc 100644 --- a/auth-shadow.c +++ b/auth-shadow.c @@ -98,8 +98,8 @@ auth_shadow_pwexpired(Authctxt *ctxt) } today = time(NULL) / DAY; - debug3("%s: today %d sp_lstchg %d sp_max %d", __func__, (int)today, - (int)spw->sp_lstchg, (int)spw->sp_max); + debug3_f("today %lld sp_lstchg %lld sp_max %lld", (long long)today, + (long long)spw->sp_lstchg, (long long)spw->sp_max); #if defined(__hpux) && !defined(HAVE_SECUREWARE) if (iscomsec()) {