mirror of
https://github.com/samba-team/samba.git
synced 2025-09-12 13:44:19 +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:
committed by
Jeremy Allison
parent
9658112e10
commit
4e935c5951
@@ -755,8 +755,8 @@ static NTSTATUS gensec_gse_seal_packet(struct gensec_security *gensec_security,
|
|||||||
whole_pdu, pdu_length,
|
whole_pdu, pdu_length,
|
||||||
mem_ctx, sig);
|
mem_ctx, sig);
|
||||||
if (!NT_STATUS_IS_OK(status)) {
|
if (!NT_STATUS_IS_OK(status)) {
|
||||||
DEBUG(0, ("gssapi_seal_packet(hdr_signing=%u,sig_size=%ju,"
|
DEBUG(0, ("gssapi_seal_packet(hdr_signing=%u,sig_size=%zu,"
|
||||||
"data=%ju,pdu=%ju) failed: %s\n",
|
"data=%zu,pdu=%zu) failed: %s\n",
|
||||||
hdr_signing, sig_size, length, pdu_length,
|
hdr_signing, sig_size, length, pdu_length,
|
||||||
nt_errstr(status)));
|
nt_errstr(status)));
|
||||||
return status;
|
return status;
|
||||||
@@ -787,8 +787,8 @@ static NTSTATUS gensec_gse_unseal_packet(struct gensec_security *gensec_security
|
|||||||
whole_pdu, pdu_length,
|
whole_pdu, pdu_length,
|
||||||
sig);
|
sig);
|
||||||
if (!NT_STATUS_IS_OK(status)) {
|
if (!NT_STATUS_IS_OK(status)) {
|
||||||
DEBUG(0, ("gssapi_unseal_packet(hdr_signing=%u,sig_size=%ju,"
|
DEBUG(0, ("gssapi_unseal_packet(hdr_signing=%u,sig_size=%zu,"
|
||||||
"data=%ju,pdu=%ju) failed: %s\n",
|
"data=%zu,pdu=%zu) failed: %s\n",
|
||||||
hdr_signing, sig->length, length, pdu_length,
|
hdr_signing, sig->length, length, pdu_length,
|
||||||
nt_errstr(status)));
|
nt_errstr(status)));
|
||||||
return status;
|
return status;
|
||||||
@@ -821,7 +821,7 @@ static NTSTATUS gensec_gse_sign_packet(struct gensec_security *gensec_security,
|
|||||||
mem_ctx, sig);
|
mem_ctx, sig);
|
||||||
if (!NT_STATUS_IS_OK(status)) {
|
if (!NT_STATUS_IS_OK(status)) {
|
||||||
DEBUG(0, ("gssapi_sign_packet(hdr_signing=%u,"
|
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,
|
hdr_signing, length, pdu_length,
|
||||||
nt_errstr(status)));
|
nt_errstr(status)));
|
||||||
return status;
|
return status;
|
||||||
@@ -852,8 +852,8 @@ static NTSTATUS gensec_gse_check_packet(struct gensec_security *gensec_security,
|
|||||||
whole_pdu, pdu_length,
|
whole_pdu, pdu_length,
|
||||||
sig);
|
sig);
|
||||||
if (!NT_STATUS_IS_OK(status)) {
|
if (!NT_STATUS_IS_OK(status)) {
|
||||||
DEBUG(0, ("gssapi_check_packet(hdr_signing=%u,sig_size=%ju"
|
DEBUG(0, ("gssapi_check_packet(hdr_signing=%u,sig_size=%zu"
|
||||||
"data=%ju,pdu=%ju) failed: %s\n",
|
"data=%zu,pdu=%zu) failed: %s\n",
|
||||||
hdr_signing, sig->length, length, pdu_length,
|
hdr_signing, sig->length, length, pdu_length,
|
||||||
nt_errstr(status)));
|
nt_errstr(status)));
|
||||||
return status;
|
return status;
|
||||||
|
Reference in New Issue
Block a user