r2177: use the correct counter when copying group rids from the user_info3 struct...
authorGerald Carter <jerry@samba.org>
Wed, 1 Sep 2004 21:28:42 +0000 (21:28 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 15:52:34 +0000 (10:52 -0500)
(This used to be commit aa89806deb9d4c9cbd23ccdd41bb98346e395078)

source3/nsswitch/winbindd_pam.c

index 08913a35a48f5a9d07c76b1a5ec5e4c33b1122a6..129f876f817f10acd253ddab768b36a1df195a25 100644 (file)
@@ -108,9 +108,9 @@ static NTSTATUS check_info3_in_group(TALLOC_CTX *mem_ctx,
        
                sid_copy(&all_sids[j], &(info3->dom_sid.sid));
                
-               if (!sid_append_rid(&all_sids[j], info3->gids[j].g_rid)) {
+               if (!sid_append_rid(&all_sids[j], info3->gids[i].g_rid)) {
                        DEBUG(3,("could not append additional group rid 0x%x\n",
-                               info3->gids[j].g_rid));                 
+                               info3->gids[i].g_rid));                 
                                
                        return NT_STATUS_INVALID_PARAMETER;
                }
@@ -125,7 +125,7 @@ static NTSTATUS check_info3_in_group(TALLOC_CTX *mem_ctx,
 
        for (i = 0; i < info3->num_other_sids; i++) {
                sid_copy(&all_sids[info3->num_groups2 + i + 2],
-                        &info3->other_sids[j].sid);
+                        &info3->other_sids[i].sid);
                j++;
        }