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
@@ -45,6 +45,10 @@ 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