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

@@ -897,7 +897,7 @@ _krb5_extract_ticket(krb5_context context,
ret = KRB5KRB_AP_ERR_SKEW;
krb5_set_error_message (context, ret,
N_("time skew (%ld) larger than max (%ld)", ""),
krb5_time_abs(tmp_time, sec_now),
(long)krb5_time_abs(tmp_time, sec_now),
(long)context->max_skew);
goto out;
}