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:
parent
329bfe47d9
commit
28b84ac684
@ -62,8 +62,8 @@ krb5_error_code check_pac_checksum(DATA_BLOB pac_data,
|
|||||||
/* ok */
|
/* ok */
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
DEBUG(2,("check_pac_checksum: Checksum Type %d is not supported\n",
|
DEBUG(2,("check_pac_checksum: Checksum Type %"PRIu32" is not supported\n",
|
||||||
(int)sig->type));
|
sig->type));
|
||||||
return EINVAL;
|
return EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user