heimdal: Fix the 32-bit build on FreeBSD

Format string fixes that fail in the Samba build on a 32-bit machine

Signed-off-by: Volker Lendecke <vl@samba.org>
This commit is contained in:
Volker Lendecke
2022-07-22 18:38:21 +02:00
committed by Jeffrey Altman
parent 603e673130
commit f4faaeaba3
5 changed files with 7 additions and 7 deletions

View File

@@ -493,7 +493,7 @@ _kdc_gss_endtime(astgs_request_t r,
endtime = kdc_time + gcp->lifetime;
kdc_log(r->context, r->config, 10,
"GSS pre-authentication endtime is %ld", endtime);
"GSS pre-authentication endtime is %ld", (long)endtime);
return endtime;
}