diff options
author | Günther Deschner <gd@samba.org> | 2008-02-29 17:45:25 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-02-29 17:45:25 +0100 |
commit | 3afcd3ab8399c15154a020f5dd80e217f41899a3 (patch) | |
tree | 36129035bb60c2d8890add4752e87e376461b1c2 /source3/libgpo | |
parent | 485b070eb86492dc07c29ae63634fb99389baea6 (diff) | |
download | samba-3afcd3ab8399c15154a020f5dd80e217f41899a3.tar.gz samba-3afcd3ab8399c15154a020f5dd80e217f41899a3.tar.xz samba-3afcd3ab8399c15154a020f5dd80e217f41899a3.zip |
what a wurst.
(This used to be commit ab687104c1371c84c510eca7ef2caad7c21ea8fc)
Diffstat (limited to 'source3/libgpo')
-rw-r--r-- | source3/libgpo/gpo_util.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/source3/libgpo/gpo_util.c b/source3/libgpo/gpo_util.c index 79f2690245e..b9053d0ae5b 100644 --- a/source3/libgpo/gpo_util.c +++ b/source3/libgpo/gpo_util.c @@ -750,3 +750,28 @@ NTSTATUS gp_find_file(TALLOC_CTX *mem_ctx, return NT_STATUS_NO_SUCH_FILE; } +/**************************************************************** +****************************************************************/ + +ADS_STATUS gp_get_machine_token(ADS_STRUCT *ads, + TALLOC_CTX *mem_ctx, + const char *dn, + struct nt_user_token **token) +{ + struct nt_user_token *ad_token = NULL; + ADS_STATUS status; + NTSTATUS ntstatus; + + status = ads_get_sid_token(ads, mem_ctx, dn, &ad_token); + if (!ADS_ERR_OK(status)) { + return status; + } + + ntstatus = merge_nt_token(mem_ctx, ad_token, get_system_token(), + token); + if (!NT_STATUS_IS_OK(ntstatus)) { + return ADS_ERROR_NT(ntstatus); + } + + return ADS_SUCCESS; +} |