From: Matthias Dieter Wallnöfer Date: Thu, 4 Mar 2010 12:49:18 +0000 (+0100) Subject: s4:sam.c - make "authsam_expand_nested_groups" public X-Git-Tag: samba-3.6.0pre1~4794 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f371cdbe5a5c2f02ca82a492530fc00b67960d4;p=thirdparty%2Fsamba.git s4:sam.c - make "authsam_expand_nested_groups" public This is needed by the "tokenGroups" work in the operational LDB module. --- diff --git a/source4/auth/auth.h b/source4/auth/auth.h index b0a907f624d..bbdbbc3127a 100644 --- a/source4/auth/auth.h +++ b/source4/auth/auth.h @@ -237,6 +237,12 @@ NTSTATUS authsam_account_ok(TALLOC_CTX *mem_ctx, bool allow_domain_trust, bool password_change); struct auth_session_info *system_session(struct loadparm_context *lp_ctx); +NTSTATUS authsam_expand_nested_groups(struct ldb_context *sam_ctx, + const struct dom_sid *sid, + const bool only_childs, + TALLOC_CTX *res_sids_ctx, + struct dom_sid ***res_sids, + unsigned int *num_res_sids); NTSTATUS authsam_make_server_info(TALLOC_CTX *mem_ctx, struct ldb_context *sam_ctx, const char *netbios_name, const char *domain_name, diff --git a/source4/auth/sam.c b/source4/auth/sam.c index 7dbe6d76e66..20efc3684ab 100644 --- a/source4/auth/sam.c +++ b/source4/auth/sam.c @@ -297,7 +297,7 @@ static bool sids_contains_sid(const struct dom_sid **sids, * * At the beginning "res_sids" should reference to a NULL pointer. */ -static NTSTATUS authsam_expand_nested_groups(struct ldb_context *sam_ctx, +_PUBLIC_ NTSTATUS authsam_expand_nested_groups(struct ldb_context *sam_ctx, const struct dom_sid *sid, const bool only_childs, TALLOC_CTX *res_sids_ctx, struct dom_sid ***res_sids, unsigned int *num_res_sids)