diff options
Diffstat (limited to 'cache.c')
-rw-r--r-- | cache.c | 2 |
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, | |||
343 | int result; | 343 | int result; |
344 | 344 | ||
345 | /* If the cache is disabled, just generate the content */ | 345 | /* If the cache is disabled, just generate the content */ |
346 | if (size <= 0) { | 346 | if (size <= 0 || ttl == 0) { |
347 | fn(); | 347 | fn(); |
348 | return 0; | 348 | return 0; |
349 | } | 349 | } |