From c9486b9a458be6bdbf5ab5aaf84a816419d7dcc5 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Mon, 26 Nov 2012 13:50:48 +0100 Subject: Save domain and GID for groups from the configured domain Currently users from subdomains can only be members of groups from the configured domain and to access those groups a pointer to the domain struct of the configured domain is used. This patch sets the dom_grp member of struct pac_grp to point to the domain struct of the configured for groups from this domain. This is a first step to allow group membership for groups from subdomains as well. For those groups a pointer to the related subdomain structure will be saved. --- src/responder/pac/pacsrv.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/responder/pac/pacsrv.h') diff --git a/src/responder/pac/pacsrv.h b/src/responder/pac/pacsrv.h index 4d3a3164..71fcf8e4 100644 --- a/src/responder/pac/pacsrv.h +++ b/src/responder/pac/pacsrv.h @@ -100,6 +100,7 @@ errno_t get_my_domain_data(struct pac_ctx *pac_ctx, struct local_mapping_ranges **_range_map); errno_t get_gids_from_pac(TALLOC_CTX *mem_ctx, + struct pac_ctx *pac_ctx, struct local_mapping_ranges *range_map, struct dom_sid *domain_sid, struct PAC_LOGON_INFO *logon_info, -- cgit