mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s3:winbind: Add additional debug level check to winbindd_getsidaliases_send()
Signed-off-by: Pavel Filipenský <pfilipensky@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
parent
47c48fd020
commit
a2f30eede4
@ -87,9 +87,12 @@ struct tevent_req *winbindd_getsidaliases_send(TALLOC_CTX *mem_ctx,
|
|||||||
cli->client_name,
|
cli->client_name,
|
||||||
(unsigned int)cli->pid,
|
(unsigned int)cli->pid,
|
||||||
request->data.sid);
|
request->data.sid);
|
||||||
for (i = 0; i < num_sids; i++) {
|
if (CHECK_DEBUGLVL(DBGLVL_DEBUG)) {
|
||||||
struct dom_sid_buf sidstr;
|
for (i = 0; i < num_sids; i++) {
|
||||||
D_NOTICE("%"PRIu32": %s\n", i, dom_sid_str_buf(&sids[i], &sidstr));
|
struct dom_sid_buf sidstr;
|
||||||
|
D_NOTICE("%"PRIu32": %s\n",
|
||||||
|
i, dom_sid_str_buf(&sids[i], &sidstr));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
subreq = wb_lookupuseraliases_send(state, ev, domain, num_sids, sids);
|
subreq = wb_lookupuseraliases_send(state, ev, domain, num_sids, sids);
|
||||||
|
Loading…
Reference in New Issue
Block a user