From 0b96f54f04237df6045a63c9cd1b9563cd30682a Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Tue, 14 Aug 2007 07:18:41 +0000 Subject: r24396: Fix a typo. Thanks to metze (metze@samba.org) for catching this one. (This used to be commit abf631822da6221af187498cde9fe068cd91ee43) --- source4/winbind/wb_gid2sid.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/winbind/wb_gid2sid.c') diff --git a/source4/winbind/wb_gid2sid.c b/source4/winbind/wb_gid2sid.c index 40fd9b6c35..5c0b87118d 100644 --- a/source4/winbind/wb_gid2sid.c +++ b/source4/winbind/wb_gid2sid.c @@ -33,7 +33,7 @@ struct gid2sid_state { }; struct composite_context *wb_gid2sid_send(TALLOC_CTX *mem_ctx, - struct wbsrv_service *service, uid_t uid) + struct wbsrv_service *service, gid_t gid) { struct composite_context *result; struct gid2sid_state *state; @@ -51,8 +51,8 @@ struct composite_context *wb_gid2sid_send(TALLOC_CTX *mem_ctx, state->service = service; /* FIXME: This is a stub so far. - * We cheat by just using the uid as RID with the domain SID.*/ - state->sid = dom_sid_add_rid(result, service->primary_sid, uid); + * We cheat by just using the gid as RID with the domain SID.*/ + state->sid = dom_sid_add_rid(result, service->primary_sid, gid); if (composite_nomem(state->sid, state->ctx)) return result; composite_done(state->ctx); -- cgit