summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2016-12-21 11:29:08 +0100
committerUri Simchoni <uri@samba.org>2016-12-27 20:20:27 +0100
commit9079dc4f4501c4e868f46de41b82927b69dc78d5 (patch)
treea432be64a08cf999a312e278c2e7877f10574824 /librpc
parenta25fb5cae26a26aa3b994824b57e34624727b2a5 (diff)
downloadsamba-9079dc4f4501c4e868f46de41b82927b69dc78d5.tar.gz
idmap: Pass up the xid2sids unix-ids from the idmap child
When asking for gid2sid with an idmap backend that does ID_TYPE_BOTH and the sid in question is actually a user, the parent winbind needs to know about it. The next commit will prime the gencache also after xid2sid calls, and if we filled it with a ID_TYPE_GID entry, a later sid2uid call would fail. BUG: https://bugzilla.samba.org/show_bug.cgi?id=12484 Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Uri Simchoni <uri@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/winbind.idl2
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/winbind.idl b/librpc/idl/winbind.idl
index 60c875b04c3..ec472c57ede 100644
--- a/librpc/idl/winbind.idl
+++ b/librpc/idl/winbind.idl
@@ -59,7 +59,7 @@ interface winbind
NTSTATUS wbint_UnixIDs2Sids(
[in,string,charset(UTF8)] char *domain_name,
[in] uint32 num_ids,
- [in] unixid xids[num_ids],
+ [in,out] unixid xids[num_ids],
[out] dom_sid sids[num_ids]
);