1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-24 21:49:29 +03:00

idmap: Remove dom_name from wbint_Gid2Sid

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Bug: https://bugzilla.samba.org/show_bug.cgi?id=11464
(cherry picked from commit 8856555af4)
This commit is contained in:
Volker Lendecke
2015-08-19 13:44:02 +02:00
committed by Stefan Metzmacher
parent 617687d0ad
commit 79a1174e10
2 changed files with 1 additions and 2 deletions

View File

@ -62,7 +62,6 @@ interface winbind
);
NTSTATUS wbint_Gid2Sid(
[in,unique,string,charset(UTF8)] char *dom_name,
[in] hyper gid,
[out] dom_sid *sid
);

View File

@ -78,7 +78,7 @@ struct tevent_req *wb_gid2sid_send(TALLOC_CTX *mem_ctx,
child = idmap_child();
subreq = dcerpc_wbint_Gid2Sid_send(
state, ev, child->binding_handle, state->dom_name,
state, ev, child->binding_handle,
gid, &state->sid);
if (tevent_req_nomem(subreq, req)) {
return tevent_req_post(req, ev);