about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorLars Hjemli2007-01-05 18:18:58 +0100
committerLars Hjemli2007-01-05 18:18:58 +0100
commita6a11125283cd159bbd22e4e3c619bccad1162df (patch)
tree3976dfc63c5fee196b1d5b595de2cf20bd687e6d
parentHandle %xx encoding in querystring (diff)
downloadcgit-a6a11125283cd159bbd22e4e3c619bccad1162df.tar.gz
cgit-a6a11125283cd159bbd22e4e3c619bccad1162df.zip
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 <larsh@hal-2004.(none)>
-rw-r--r--cgit.c1
1 files changed, 1 insertions, 0 deletions
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)
153 cgit_parse_query(cgit_querystring, cgit_querystring_cb); 153 cgit_parse_query(cgit_querystring, cgit_querystring_cb);
154 154
155 if (cgit_nocache) { 155 if (cgit_nocache) {
156 cache_prepare(&item);
156 item.fd = STDOUT_FILENO; 157 item.fd = STDOUT_FILENO;
157 cgit_fill_cache(&item); 158 cgit_fill_cache(&item);
158 } else { 159 } else {