From: Michael Adam Date: Thu, 15 Jan 2009 23:50:45 +0000 (+0100) Subject: s3: put the gpo cache dir under cache_dir instead of lock_dir X-Git-Tag: samba-4.0.0alpha6~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=584da3fea3f4391bb8b68cac90947edf88d0c28d;p=thirdparty%2Fsamba.git s3: put the gpo cache dir under cache_dir instead of lock_dir Michael --- diff --git a/source3/libgpo/gpo_fetch.c b/source3/libgpo/gpo_fetch.c index 2ec066425bb..302003f5ae9 100644 --- a/source3/libgpo/gpo_fetch.c +++ b/source3/libgpo/gpo_fetch.c @@ -59,7 +59,7 @@ NTSTATUS gpo_explode_filesyspath(TALLOC_CTX *mem_ctx, if ((path = talloc_asprintf(mem_ctx, "%s/%s", - lock_path(GPO_CACHE_DIR), + cache_path(GPO_CACHE_DIR), file_sys_path)) == NULL) { return NT_STATUS_NO_MEMORY; } @@ -82,7 +82,7 @@ NTSTATUS gpo_explode_filesyspath(TALLOC_CTX *mem_ctx, static NTSTATUS gpo_prepare_local_store(TALLOC_CTX *mem_ctx, const char *unix_path) { - const char *top_dir = lock_path(GPO_CACHE_DIR); + const char *top_dir = cache_path(GPO_CACHE_DIR); char *current_dir; char *tok;