Unidiff1 files changed, 6 insertions, 3 deletions
|
diff --git a/cache.c b/cache.c index 8df7c26..7cdea9b 100644 --- a/ cache.c+++ b/ cache.c |
|
@@ -34,33 +34,36 @@ int cache_exist(struct cacheitem *item) |
34 | } |
34 | } |
35 | return 1; |
35 | return 1; |
36 | } |
36 | } |
37 | |
37 | |
38 | int cache_create_dirs() |
38 | int cache_create_dirs() |
39 | { |
39 | { |
40 | char *path; |
40 | char *path; |
41 | |
41 | |
42 | path = fmt("%s", cgit_cache_root); |
42 | path = fmt("%s", cgit_cache_root); |
43 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
43 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
44 | return 0; |
44 | return 0; |
45 | |
45 | |
46 | if (!cgit_query_repo) |
46 | if (!cgit_repo) |
47 | return 0; |
47 | return 0; |
48 | |
48 | |
49 | path = fmt("%s/%s", cgit_cache_root, cgit_query_repo); |
49 | path = fmt("%s/%s", cgit_cache_root, |
| |
50 | cache_safe_filename(cgit_repo->url)); |
| |
51 | |
50 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
52 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
51 | return 0; |
53 | return 0; |
52 | |
54 | |
53 | if (cgit_query_page) { |
55 | if (cgit_query_page) { |
54 | path = fmt("%s/%s/%s", cgit_cache_root, cgit_query_repo, |
56 | path = fmt("%s/%s/%s", cgit_cache_root, |
| |
57 | cache_safe_filename(cgit_repo->url), |
55 | cgit_query_page); |
58 | cgit_query_page); |
56 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
59 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
57 | return 0; |
60 | return 0; |
58 | } |
61 | } |
59 | return 1; |
62 | return 1; |
60 | } |
63 | } |
61 | |
64 | |
62 | int cache_refill_overdue(const char *lockfile) |
65 | int cache_refill_overdue(const char *lockfile) |
63 | { |
66 | { |
64 | struct stat st; |
67 | struct stat st; |
65 | |
68 | |
66 | if (stat(lockfile, &st)) |
69 | if (stat(lockfile, &st)) |
|