diff options
author | Wilco Baan Hofman <wilco@baanhofman.nl> | 2009-03-01 18:44:58 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-04-20 23:16:16 +0200 |
commit | 68ff179b2960c80c56978869e2dd97806b10a214 (patch) | |
tree | a35fce8e907fc61f9bdb3f668c6111fd20b8a956 /libgpo/gpo_ldap.c | |
parent | ff33d50fabd6d5262d1917678d83c7c01351f04d (diff) | |
download | samba-68ff179b2960c80c56978869e2dd97806b10a214.tar.gz samba-68ff179b2960c80c56978869e2dd97806b10a214.tar.bz2 samba-68ff179b2960c80c56978869e2dd97806b10a214.zip |
Add nt_token_check_sid convenience function. Map NT_USER_TOKEN to struct security_token. Fix build errors.
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'libgpo/gpo_ldap.c')
-rw-r--r-- | libgpo/gpo_ldap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgpo/gpo_ldap.c b/libgpo/gpo_ldap.c index 16c551ebab..0959ed6b38 100644 --- a/libgpo/gpo_ldap.c +++ b/libgpo/gpo_ldap.c @@ -551,7 +551,7 @@ static ADS_STATUS add_gplink_to_gpo_list(ADS_STRUCT *ads, struct GP_LINK *gp_link, enum GPO_LINK_TYPE link_type, bool only_add_forced_gpos, - const struct nt_user_token *token) + const NT_USER_TOKEN *token) { ADS_STATUS status; int i; @@ -618,7 +618,7 @@ static ADS_STATUS add_gplink_to_gpo_list(ADS_STRUCT *ads, ADS_STATUS ads_get_sid_token(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, const char *dn, - struct nt_user_token **token) + NT_USER_TOKEN **token) { ADS_STATUS status; DOM_SID object_sid; @@ -627,7 +627,7 @@ ADS_STATUS ads_get_sid_token(ADS_STRUCT *ads, size_t num_ad_token_sids = 0; DOM_SID *token_sids; size_t num_token_sids = 0; - struct nt_user_token *new_token = NULL; + NT_USER_TOKEN *new_token = NULL; int i; status = ads_get_tokensids(ads, mem_ctx, dn, @@ -709,7 +709,7 @@ ADS_STATUS ads_get_gpo_list(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, const char *dn, uint32_t flags, - const struct nt_user_token *token, + const NT_USER_TOKEN *token, struct GROUP_POLICY_OBJECT **gpo_list) { /* (L)ocal (S)ite (D)omain (O)rganizational(U)nit */ |