1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

auth: Use portable format specifier

Also, correctly format the value as unsigned.

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-08-10 11:29:52 +12:00 committed by Andrew Bartlett
parent 329bfe47d9
commit 28b84ac684

View File

@ -62,8 +62,8 @@ krb5_error_code check_pac_checksum(DATA_BLOB pac_data,
/* ok */
break;
default:
DEBUG(2,("check_pac_checksum: Checksum Type %d is not supported\n",
(int)sig->type));
DEBUG(2,("check_pac_checksum: Checksum Type %"PRIu32" is not supported\n",
sig->type));
return EINVAL;
}