1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s3:winbind: Change '%u' to '%PRIu32' for uint32_t in wb_lookupusergroups.c

Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Pavel Filipenský 2022-07-18 15:28:10 +02:00 committed by Andreas Schneider
parent 6aded17131
commit 547b51935c

View File

@ -107,12 +107,13 @@ NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
*num_sids = state->sids.num_sids;
*sids = talloc_move(mem_ctx, &state->sids.sids);
D_INFO("WB command lookupusergroups end.\nReceived %u SID(s).\n",
D_INFO("WB command lookupusergroups end.\nReceived %"PRIu32" SID(s).\n",
*num_sids);
if (CHECK_DEBUGLVL(DBGLVL_INFO)) {
for (i = 0; i < *num_sids; i++) {
struct dom_sid_buf buf;
D_INFO("%u: %s\n", i, dom_sid_str_buf(&((*sids)[i]), &buf));
D_INFO("%"PRIu32": %s\n",
i, dom_sid_str_buf(&*sids[i], &buf));
}
}
return NT_STATUS_OK;