diff options
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index f41809d58d..11b220eec6 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -608,7 +608,8 @@ NTSTATUS create_local_token(TALLOC_CTX *mem_ctx, for (i=1; i<t->num_sids; i++) { - if (ids[i].type != WBC_ID_TYPE_GID) { + if (ids[i].type != WBC_ID_TYPE_GID && + ids[i].type != WBC_ID_TYPE_BOTH) { DEBUG(10, ("Could not convert SID %s to gid, " "ignoring it\n", sid_string_dbg(&t->sids[i]))); |