From a02c2251ae826c668a78299fb336aa885b3765dd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 4 Dec 2010 20:31:36 +0100 Subject: [PATCH] s3: Fix bug 7841: WINBINDD_LOOKUPRIDS asks the wrong domain --- source3/winbindd/winbindd_lookuprids.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/source3/winbindd/winbindd_lookuprids.c b/source3/winbindd/winbindd_lookuprids.c index f2cb879..51cd4d8 100644 --- a/source3/winbindd/winbindd_lookuprids.c +++ b/source3/winbindd/winbindd_lookuprids.c @@ -61,7 +61,7 @@ struct tevent_req *winbindd_lookuprids_send(TALLOC_CTX *mem_ctx, return tevent_req_post(req, ev); } - domain = find_domain_from_sid_noinit(&sid); + domain = find_lookup_domain_from_sid(&sid); if (domain == NULL) { DEBUG(5, ("Domain for sid %s not found\n", sid_string_dbg(&sid))); -- 1.7.3.2