From 6e89b39ed0cfae69b001aec98f5ba675b0903ae9 Mon Sep 17 00:00:00 2001 From: Laurent MONIN Date: Wed, 12 Sep 2007 23:51:43 +0200 Subject: [PATCH] Fix get_opt_bool() call and finish backport of process_head() split. --- src/document/html/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/document/html/parser.c b/src/document/html/parser.c index 71cc033a..220cec0c 100644 --- a/src/document/html/parser.c +++ b/src/document/html/parser.c @@ -450,7 +450,7 @@ check_head_for_cache_control(struct html_context *html_context, int no_cache = 0; time_t expires = 0; - if (get_opt_bool("document.cache.ignore_cache_control", NULL)) + if (get_opt_bool("document.cache.ignore_cache_control")) return; /* XXX: Code duplication with HTTP protocol backend. */