summaryrefslogtreecommitdiffabout
path: root/cache.c
Unidiff
Diffstat (limited to 'cache.c') (more/less context) (ignore whitespace changes)
-rw-r--r--cache.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cache.c b/cache.c
index 39e63a5..91b89a6 100644
--- a/cache.c
+++ b/cache.c
@@ -32,32 +32,36 @@ void cache_prepare(struct cacheitem *item)
32 } 32 }
33} 33}
34 34
35int cache_exist(struct cacheitem *item) 35int cache_exist(struct cacheitem *item)
36{ 36{
37 if (stat(item->name, &item->st)) { 37 if (stat(item->name, &item->st)) {
38 item->st.st_mtime = 0; 38 item->st.st_mtime = 0;
39 return 0; 39 return 0;
40 } 40 }
41 return 1; 41 return 1;
42} 42}
43 43
44int cache_create_dirs() 44int 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) {
56 path = fmt("%s/%s/%s", cgit_cache_root, cgit_query_repo, 60 path = fmt("%s/%s/%s", cgit_cache_root, cgit_query_repo,
57 cgit_query_page); 61 cgit_query_page);
58 if (mkdir(path, S_IRWXU) && errno!=EEXIST) 62 if (mkdir(path, S_IRWXU) && errno!=EEXIST)
59 return 0; 63 return 0;
60 } 64 }
61 return 1; 65 return 1;
62} 66}
63 67