diff options
author | Günther Deschner <gd@samba.org> | 2009-04-20 19:15:32 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-04-20 23:16:17 +0200 |
commit | 7010365e9ac5f9a285b5ad7b660a3c49ff0e8c17 (patch) | |
tree | d4fbbd19ae72c17b16d7185bc7a9a8fb247b3314 /libgpo/gpo_fetch.c | |
parent | 171a361375e1cd76a80253d67e4e34a139bb5570 (diff) | |
download | samba-7010365e9ac5f9a285b5ad7b660a3c49ff0e8c17.tar.gz |
libgpo: Fix some minor issues.
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'libgpo/gpo_fetch.c')
-rw-r--r-- | libgpo/gpo_fetch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgpo/gpo_fetch.c b/libgpo/gpo_fetch.c index beedfc22801..06c730cfa38 100644 --- a/libgpo/gpo_fetch.c +++ b/libgpo/gpo_fetch.c @@ -114,7 +114,7 @@ static NTSTATUS gpo_prepare_local_store(TALLOC_CTX *mem_ctx, } while (next_token_talloc(mem_ctx, &unix_path, &tok, "/")) { - if (strequal(tok, cache_dir)) { + if (strequal(tok, GPO_CACHE_DIR)) { break; } } @@ -212,6 +212,7 @@ NTSTATUS gpo_fetch_files(TALLOC_CTX *mem_ctx, result = gpo_connect_server(ads, lp_ctx, server, service, &cli); + NT_STATUS_NOT_OK_RETURN(result); result = gpo_prepare_local_store(mem_ctx, cache_dir, unix_path); |