about summary refs log tree commit
path: root/cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'cache.c')
-rw-r--r--cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.c b/cache.c
index 9e7eeb0..801e63f 100644
--- a/cache.c
+++ b/cache.c
@@ -343,7 +343,7 @@ int cache_process(int size, const char *path, const char *key, int ttl,
         int result;
 
         /* If the cache is disabled, just generate the content */
-        if (size <= 0) {
+        if (size <= 0 || ttl == 0) {
                 fn();
                 return 0;
         }