diff options
author | Wilco Baan Hofman <wilco@baanhofman.nl> | 2009-03-15 20:34:59 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-04-20 23:16:17 +0200 |
commit | 3e010e3eb8f463cb49e5dbace4abc34a067d08f4 (patch) | |
tree | fd41f489d2e889f6690c25fb235d7b8a9d57d0fb /source3/utils/net_ads_gpo.c | |
parent | b939638dc79daa065c58755abf9f58d1df571401 (diff) | |
download | samba-3e010e3eb8f463cb49e5dbace4abc34a067d08f4.tar.gz |
Adjust samba 3 to the new gpo API. Still untested code.
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/utils/net_ads_gpo.c')
-rw-r--r-- | source3/utils/net_ads_gpo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/utils/net_ads_gpo.c b/source3/utils/net_ads_gpo.c index 910c78d05a0..9e41905d797 100644 --- a/source3/utils/net_ads_gpo.c +++ b/source3/utils/net_ads_gpo.c @@ -73,7 +73,7 @@ static int net_ads_gpo_refresh(struct net_context *c, int argc, const char **arg d_printf("* fetching token "); if (uac & UF_WORKSTATION_TRUST_ACCOUNT) { - status = gp_get_machine_token(ads, mem_ctx, dn, &token); + status = gp_get_machine_token(ads, mem_ctx, NULL, dn, &token); } else { status = ads_get_sid_token(ads, mem_ctx, dn, &token); } @@ -94,6 +94,8 @@ static int net_ads_gpo_refresh(struct net_context *c, int argc, const char **arg d_printf("* refreshing Group Policy Data "); if (!NT_STATUS_IS_OK(result = check_refresh_gpo_list(ads, mem_ctx, + cache_path(GPO_CACHE_DIR), + NULL, flags, gpo_list))) { d_printf("failed: %s\n", nt_errstr(result)); @@ -326,7 +328,7 @@ static int net_ads_gpo_list(struct net_context *c, int argc, const char **argv) argv[0], dn); if (uac & UF_WORKSTATION_TRUST_ACCOUNT) { - status = gp_get_machine_token(ads, mem_ctx, dn, &token); + status = gp_get_machine_token(ads, mem_ctx, NULL, dn, &token); } else { status = ads_get_sid_token(ads, mem_ctx, dn, &token); } |