mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
Fix format size errors for i386 in source3/librpc/crypto/gse.c
Again, sizeof(size_t) != sizeof(uintmax_t). Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
9658112e10
commit
4e935c5951
@ -755,8 +755,8 @@ static NTSTATUS gensec_gse_seal_packet(struct gensec_security *gensec_security,
|
||||
whole_pdu, pdu_length,
|
||||
mem_ctx, sig);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(0, ("gssapi_seal_packet(hdr_signing=%u,sig_size=%ju,"
|
||||
"data=%ju,pdu=%ju) failed: %s\n",
|
||||
DEBUG(0, ("gssapi_seal_packet(hdr_signing=%u,sig_size=%zu,"
|
||||
"data=%zu,pdu=%zu) failed: %s\n",
|
||||
hdr_signing, sig_size, length, pdu_length,
|
||||
nt_errstr(status)));
|
||||
return status;
|
||||
@ -787,8 +787,8 @@ static NTSTATUS gensec_gse_unseal_packet(struct gensec_security *gensec_security
|
||||
whole_pdu, pdu_length,
|
||||
sig);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(0, ("gssapi_unseal_packet(hdr_signing=%u,sig_size=%ju,"
|
||||
"data=%ju,pdu=%ju) failed: %s\n",
|
||||
DEBUG(0, ("gssapi_unseal_packet(hdr_signing=%u,sig_size=%zu,"
|
||||
"data=%zu,pdu=%zu) failed: %s\n",
|
||||
hdr_signing, sig->length, length, pdu_length,
|
||||
nt_errstr(status)));
|
||||
return status;
|
||||
@ -821,7 +821,7 @@ static NTSTATUS gensec_gse_sign_packet(struct gensec_security *gensec_security,
|
||||
mem_ctx, sig);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(0, ("gssapi_sign_packet(hdr_signing=%u,"
|
||||
"data=%ju,pdu=%ju) failed: %s\n",
|
||||
"data=%zu,pdu=%zu) failed: %s\n",
|
||||
hdr_signing, length, pdu_length,
|
||||
nt_errstr(status)));
|
||||
return status;
|
||||
@ -852,8 +852,8 @@ static NTSTATUS gensec_gse_check_packet(struct gensec_security *gensec_security,
|
||||
whole_pdu, pdu_length,
|
||||
sig);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DEBUG(0, ("gssapi_check_packet(hdr_signing=%u,sig_size=%ju"
|
||||
"data=%ju,pdu=%ju) failed: %s\n",
|
||||
DEBUG(0, ("gssapi_check_packet(hdr_signing=%u,sig_size=%zu"
|
||||
"data=%zu,pdu=%zu) failed: %s\n",
|
||||
hdr_signing, sig->length, length, pdu_length,
|
||||
nt_errstr(status)));
|
||||
return status;
|
||||
|
Loading…
Reference in New Issue
Block a user