From 8f8d188c195d1d587bfdc056b1c6845a046b6e35 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 4 Dec 2010 20:31:36 +0100 Subject: s3: Fix bug 7841: WINBINDD_LOOKUPRIDS asks the wrong domain --- source3/winbindd/winbindd_lookuprids.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd_lookuprids.c b/source3/winbindd/winbindd_lookuprids.c index 6e3d5c5ece..bd0a946013 100644 --- a/source3/winbindd/winbindd_lookuprids.c +++ b/source3/winbindd/winbindd_lookuprids.c @@ -62,7 +62,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))); -- cgit