From a6a11125283cd159bbd22e4e3c619bccad1162df Mon Sep 17 00:00:00 2001 From: Lars Hjemli Date: Fri, 5 Jan 2007 18:18:58 +0100 Subject: Use TTL-settings even in nocache mode In nocace mode an uninitialized ttl-setting was used to generate http-Expires header. Fix it. Signed-off-by: Lars Hjemli --- cgit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'cgit.c') diff --git a/cgit.c b/cgit.c index fba97d7..5dcba76 100644 --- a/cgit.c +++ b/cgit.c @@ -153,6 +153,7 @@ int main(int argc, const char **argv) cgit_parse_query(cgit_querystring, cgit_querystring_cb); if (cgit_nocache) { + cache_prepare(&item); item.fd = STDOUT_FILENO; cgit_fill_cache(&item); } else { -- cgit v1.2.3-59-g8ed1b