Cast time_t's in debug output to long long.
Should fix Coverity warning about truncation of 64bit time_t.
This commit is contained in:
parent
b0fd60a9de
commit
aa33b4d396
|
@ -98,8 +98,8 @@ auth_shadow_pwexpired(Authctxt *ctxt)
|
||||||
}
|
}
|
||||||
|
|
||||||
today = time(NULL) / DAY;
|
today = time(NULL) / DAY;
|
||||||
debug3("%s: today %d sp_lstchg %d sp_max %d", __func__, (int)today,
|
debug3_f("today %lld sp_lstchg %lld sp_max %lld", (long long)today,
|
||||||
(int)spw->sp_lstchg, (int)spw->sp_max);
|
(long long)spw->sp_lstchg, (long long)spw->sp_max);
|
||||||
|
|
||||||
#if defined(__hpux) && !defined(HAVE_SECUREWARE)
|
#if defined(__hpux) && !defined(HAVE_SECUREWARE)
|
||||||
if (iscomsec()) {
|
if (iscomsec()) {
|
||||||
|
|
Loading…
Reference in New Issue