summaryrefslogtreecommitdiff
path: root/source3/libgpo/gpo_util.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-02-29 18:19:06 +0100
committerGünther Deschner <gd@samba.org>2008-02-29 18:19:06 +0100
commitf3efceace4ad097882f6574b533318d332bff6b1 (patch)
treec9793481e1087bef42b910f1b05a716d1fd243cf /source3/libgpo/gpo_util.c
parent3afcd3ab8399c15154a020f5dd80e217f41899a3 (diff)
downloadsamba-f3efceace4ad097882f6574b533318d332bff6b1.tar.gz
samba-f3efceace4ad097882f6574b533318d332bff6b1.tar.bz2
samba-f3efceace4ad097882f6574b533318d332bff6b1.zip
Revert "what a wurst."
That commit message was just too silly, this happens to me during interactive rebase all the time... This reverts commit ab687104c1371c84c510eca7ef2caad7c21ea8fc. (This used to be commit a3a1edab0d5ac07d42e64a5a82dd71fe0c3fdfeb)
Diffstat (limited to 'source3/libgpo/gpo_util.c')
-rw-r--r--source3/libgpo/gpo_util.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/source3/libgpo/gpo_util.c b/source3/libgpo/gpo_util.c
index b9053d0ae5..79f2690245 100644
--- a/source3/libgpo/gpo_util.c
+++ b/source3/libgpo/gpo_util.c
@@ -750,28 +750,3 @@ 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;
-}