1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-29 13:49:30 +03:00

r2177: use the correct counter when copying group rids from the user_info3 struct; patch from Dimitri van der Spek <dwspek@aboveit.nl>

(This used to be commit aa89806deb)
This commit is contained in:
Gerald Carter
2004-09-01 21:28:42 +00:00
committed by Gerald (Jerry) Carter
parent c5b11b56aa
commit 0138c08516

View 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++;
}