From a256d61c505ab10710c7d7152bab4f018cfdcd74 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 20 Jul 2012 17:12:09 -0700 Subject: s3-winbind: Fix bug #9052 resolving our own "Domain Local" groups. We don't resolve our own "Domain Local" groups since bug #7843 has been fixed. So we need to add the add resource groups to the sid list too. Before bug #7843 the "Domain Local" groups were added with a lookupuseraliases call, but this isn't done anymore for our domain so we need to resolve resource groups here. When to use Resource Groups: http://technet.microsoft.com/en-us/library/cc753670%28v=WS.10%29.aspx Signed-off-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Mon Jul 23 22:12:30 CEST 2012 on sn-devel-104 --- source3/include/proto.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/include/proto.h') diff --git a/source3/include/proto.h b/source3/include/proto.h index 585067eccc..3a2bf1baa5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -549,8 +549,7 @@ NTSTATUS sid_array_from_info3(TALLOC_CTX *mem_ctx, const struct netr_SamInfo3 *info3, struct dom_sid **user_sids, uint32_t *num_user_sids, - bool include_user_group_rid, - bool skip_ressource_groups); + bool include_user_group_rid); /* The following definitions come from lib/util_sock.c */ -- cgit