Unidiff1 files changed, 2 insertions, 2 deletions
|
diff --git a/cgit.c b/cgit.c index 2036ceb..ac882c3 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -377,10 +377,10 @@ int main(int argc, const char **argv) |
377 | ctx.page.expires += ttl*60; |
377 | ctx.page.expires += ttl*60; |
378 | if (ctx.cfg.nocache) |
378 | if (ctx.cfg.nocache) |
379 | ctx.cfg.cache_size = 0; |
379 | ctx.cfg.cache_size = 0; |
380 | err = cache_process(ctx.cfg.cache_size, ctx.cfg.cache_root, |
380 | err = cache_process(ctx.cfg.cache_size, ctx.cfg.cache_root, |
381 | ctx.qry.raw, ttl, process_request, &ctx); |
381 | ctx.qry.raw, ttl, process_request, &ctx); |
382 | if (err) |
382 | if (err) |
383 | cache_log("[cgit] error %d - %s\n", |
383 | cgit_print_error(fmt("Error processing page: %s (%d)", |
384 | err, strerror(err)); |
384 | strerror(err), err)); |
385 | return err; |
385 | return err; |
386 | } |
386 | } |
|