Unidiff1 files changed, 4 insertions, 0 deletions
|
diff --git a/cache.c b/cache.c index 39e63a5..91b89a6 100644 --- a/ cache.c+++ b/ cache.c |
|
@@ -40,16 +40,20 @@ int cache_exist(struct cacheitem *item) |
40 | } |
40 | } |
41 | return 1; |
41 | return 1; |
42 | } |
42 | } |
43 | |
43 | |
44 | int cache_create_dirs() |
44 | int cache_create_dirs() |
45 | { |
45 | { |
46 | char *path; |
46 | char *path; |
47 | |
47 | |
| |
48 | path = fmt("%s", cgit_cache_root); |
| |
49 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
| |
50 | return 0; |
| |
51 | |
48 | if (!cgit_query_repo) |
52 | if (!cgit_query_repo) |
49 | return 0; |
53 | return 0; |
50 | |
54 | |
51 | path = fmt("%s/%s", cgit_cache_root, cgit_query_repo); |
55 | path = fmt("%s/%s", cgit_cache_root, cgit_query_repo); |
52 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
56 | if (mkdir(path, S_IRWXU) && errno!=EEXIST) |
53 | return 0; |
57 | return 0; |
54 | |
58 | |
55 | if (cgit_query_page) { |
59 | if (cgit_query_page) { |
|