diff options
| author | Volker Lendecke <vl@samba.org> | 2020-10-16 14:21:16 +0200 |
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2020-10-21 19:04:38 +0000 |
| commit | 2ae42bebe388e8a5871e04a46c3bb70768a30f3d (patch) | |
| tree | 88dfb3f72600aaa55416a1560c0c901b1915a11d | |
| parent | ad7e2cf6260efa99f0fdbebdb03165c79af13afc (diff) | |
| download | samba-2ae42bebe388e8a5871e04a46c3bb70768a30f3d.tar.gz samba-2ae42bebe388e8a5871e04a46c3bb70768a30f3d.tar.bz2 samba-2ae42bebe388e8a5871e04a46c3bb70768a30f3d.zip | |
libcli: Align integer types
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
| -rw-r--r-- | source4/libcli/smb_composite/appendacl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/smb_composite/appendacl.c b/source4/libcli/smb_composite/appendacl.c index 792ea5a47eb..faaabe0c4c0 100644 --- a/source4/libcli/smb_composite/appendacl.c +++ b/source4/libcli/smb_composite/appendacl.c @@ -59,7 +59,6 @@ static NTSTATUS appendacl_get(struct composite_context *c, { struct appendacl_state *state = talloc_get_type(c->private_data, struct appendacl_state); struct smbcli_tree *tree = state->req->tree; - int i; NTSTATUS status; status = smb_raw_fileinfo_recv(state->req, state->io_fileinfo, state->io_fileinfo); @@ -78,6 +77,7 @@ static NTSTATUS appendacl_get(struct composite_context *c, /* append all aces from io->in.sd->dacl to new security descriptor */ if (io->in.sd->dacl != NULL) { + uint32_t i; for (i = 0; i < io->in.sd->dacl->num_aces; i++) { security_descriptor_dacl_add(state->io_setfileinfo->set_secdesc.in.sd, &(io->in.sd->dacl->aces[i])); |
