From 3b66d3b6ae8afbb42ca2e81be893582d450c1a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Wed, 1 Jul 2009 16:04:17 +0000 Subject: [PATCH] Fix config evaluation for debug.log-timeouts option (#1529) git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2553 152afb58-edef-0310-8abb-c4023f1b3aa9 --- NEWS | 1 + src/configfile.c | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS b/NEWS index 73b3389a..1bd88897 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,7 @@ NEWS * Use unsigned int for secdownload.timeout (fixes #1966) * Keep url/host values from connection to display information while keep-alive in mod_status (fixes #1202) * Add server.breakagelog, a "special" stderr (fixes #1863) + * Fix config evaluation for debug.log-timeouts option (#1529) - 1.4.23 - 2009-06-19 * Added some extra warning options in cmake and fix the resulting warnings (unused/static functions) diff --git a/src/configfile.c b/src/configfile.c index f87f9c19..a26c0329 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -293,6 +293,7 @@ int config_setup_connection(server *srv, connection *con) { PATCH(log_condition_handling); PATCH(log_file_not_found); PATCH(log_ssl_noise); + PATCH(log_timeouts); PATCH(range_requests); PATCH(force_lowercase_filenames);