summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/ndr_security.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-07-22 11:54:54 +0200
committerMichael Adam <obnox@samba.org>2008-07-22 11:54:54 +0200
commit16a9020029f809707b38d12960db12abbd2ef1be (patch)
tree9dd1b3304d9a7dcd777a5f297e91f00c6b79f0d5 /source3/librpc/gen_ndr/ndr_security.c
parentd616e6418db5cad4271bbe5caafdd20581574d49 (diff)
downloadsamba-16a9020029f809707b38d12960db12abbd2ef1be.tar.gz
samba-16a9020029f809707b38d12960db12abbd2ef1be.tar.bz2
samba-16a9020029f809707b38d12960db12abbd2ef1be.zip
re-run make idl after Jelmer's "poperly cast array lengths" pidl change.
(f321240fa91fa19c1131f119c42f64897d220682) Michael (This used to be commit 962c2670b10addf81a242d8cb381cc010e036b8e)
Diffstat (limited to 'source3/librpc/gen_ndr/ndr_security.c')
-rw-r--r--source3/librpc/gen_ndr/ndr_security.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/gen_ndr/ndr_security.c b/source3/librpc/gen_ndr/ndr_security.c
index cbeabf48e5..d54fdb2395 100644
--- a/source3/librpc/gen_ndr/ndr_security.c
+++ b/source3/librpc/gen_ndr/ndr_security.c
@@ -548,7 +548,7 @@ _PUBLIC_ void ndr_print_security_acl(struct ndr_print *ndr, const char *name, co
ndr_print_security_acl_revision(ndr, "revision", r->revision);
ndr_print_uint16(ndr, "size", (ndr->flags & LIBNDR_PRINT_SET_VALUES)?ndr_size_security_acl(r, ndr->flags):r->size);
ndr_print_uint32(ndr, "num_aces", r->num_aces);
- ndr->print(ndr, "%s: ARRAY(%d)", "aces", r->num_aces);
+ ndr->print(ndr, "%s: ARRAY(%d)", "aces", (int)r->num_aces);
ndr->depth++;
for (cntr_aces_0=0;cntr_aces_0<r->num_aces;cntr_aces_0++) {
char *idx_0=NULL;
@@ -976,7 +976,7 @@ _PUBLIC_ void ndr_print_security_token(struct ndr_print *ndr, const char *name,
}
ndr->depth--;
ndr_print_uint32(ndr, "num_sids", r->num_sids);
- ndr->print(ndr, "%s: ARRAY(%d)", "sids", r->num_sids);
+ ndr->print(ndr, "%s: ARRAY(%d)", "sids", (int)r->num_sids);
ndr->depth++;
for (cntr_sids_0=0;cntr_sids_0<r->num_sids;cntr_sids_0++) {
char *idx_0=NULL;