From: Stefan Metzmacher Date: Wed, 12 Oct 2011 18:52:09 +0000 (+0200) Subject: s3:auth_util: add the uid with WBC_ID_TYPE_BOTH also to the group array X-Git-Url: http://git.samba.org/?p=obnox%2Fsamba%2Fsamba-obnox.git;a=commitdiff_plain;h=94fbe2e4bdab8bcd021fedfff71114bbf3d72ca1 s3:auth_util: add the uid with WBC_ID_TYPE_BOTH also to the group array This will help with having "sidHistory" support in future. metze --- diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 11b220eec6b..2c26414b278 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -604,9 +604,11 @@ NTSTATUS create_local_token(TALLOC_CTX *mem_ctx, return NT_STATUS_NO_MEMORY; } - /* Start at index 1, where the groups start. */ + for (i=0; inum_sids; i++) { - for (i=1; inum_sids; i++) { + if (i == 0 && ids[i].type != WBC_ID_TYPE_BOTH) { + continue; + } if (ids[i].type != WBC_ID_TYPE_GID && ids[i].type != WBC_ID_TYPE_BOTH) {