summaryrefslogtreecommitdiffabout
path: root/cache.c
Side-by-side diff
Diffstat (limited to 'cache.c') (more/less context) (show whitespace changes)
-rw-r--r--cache.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/cache.c b/cache.c
index 372e38d..89f7ecd 100644
--- a/cache.c
+++ b/cache.c
@@ -9,2 +9,3 @@
#include "cgit.h"
+#include "cache.h"
@@ -46,3 +47,3 @@ int cache_create_dirs()
- path = fmt("%s", cgit_cache_root);
+ path = fmt("%s", ctx.cfg.cache_root);
if (mkdir(path, S_IRWXU) && errno!=EEXIST)
@@ -50,7 +51,7 @@ int cache_create_dirs()
- if (!cgit_repo)
+ if (!ctx.repo)
return 0;
- path = fmt("%s/%s", cgit_cache_root,
- cache_safe_filename(cgit_repo->url));
+ path = fmt("%s/%s", ctx.cfg.cache_root,
+ cache_safe_filename(ctx.repo->url));
@@ -59,6 +60,6 @@ int cache_create_dirs()
- if (cgit_query_page) {
- path = fmt("%s/%s/%s", cgit_cache_root,
- cache_safe_filename(cgit_repo->url),
- cgit_query_page);
+ if (ctx.qry.page) {
+ path = fmt("%s/%s/%s", ctx.cfg.cache_root,
+ cache_safe_filename(ctx.repo->url),
+ ctx.qry.page);
if (mkdir(path, S_IRWXU) && errno!=EEXIST)
@@ -76,3 +77,3 @@ int cache_refill_overdue(const char *lockfile)
else
- return (time(NULL) - st.st_mtime > cgit_cache_max_create_time);
+ return (time(NULL) - st.st_mtime > ctx.cfg.cache_max_create_time);
}
@@ -85,3 +86,3 @@ int cache_lock(struct cacheitem *item)
top:
- if (++i > cgit_max_lock_attempts)
+ if (++i > ctx.cfg.max_lock_attempts)
die("cache_lock: unable to lock %s: %s",