From 9b14e869cd695bffade5e3398f3cd40701ddf892 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 16 Jan 2014 16:10:25 +0100 Subject: [PATCH] s3-winbind: Improve performance of wb_fill_pwent_sid2uid_done(). BUG: https://bugzilla.samba.org/show_bug.cgi?id=2191 Signed-off-by: Volker Lendecke Reviewed-by: Andreas Schneider (cherry picked from commit d145b21f3eb42de9b3bd2b813d4a07d46d9eb775) --- source3/winbindd/wb_fill_pwent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/winbindd/wb_fill_pwent.c b/source3/winbindd/wb_fill_pwent.c index 9d0abbd..cd0ca50 100644 --- a/source3/winbindd/wb_fill_pwent.c +++ b/source3/winbindd/wb_fill_pwent.c @@ -91,7 +91,7 @@ static void wb_fill_pwent_sid2uid_done(struct tevent_req *subreq) state->pw->pw_uid = (uid_t)xid.id; - subreq = wb_getgrsid_send(state, state->ev, &state->info->group_sid, 1); + subreq = wb_getgrsid_send(state, state->ev, &state->info->group_sid, 0); if (tevent_req_nomem(subreq, req)) { return; } -- 1.8.5.2