From 06c35abe4a9cf87b6bcf188d0d5dc4ec1cbf42c2 Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Tue, 1 Mar 2005 23:28:52 +0000 Subject: [PATCH] updated ChangeLog and NEWS from timeline git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@70 152afb58-edef-0310-8abb-c4023f1b3aa9 --- ChangeLog | 75 ++++++++++++++++++++++++++++++++++++++++++++++ NEWS | 12 +++++++- src/mod_compress.c | 2 +- 3 files changed, 87 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9b1a0bd1..5951e18c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -38,6 +38,81 @@ Feature Requests: - same config option twice -> aaa, aaa - remove default port from Host: +01.03.2005 23:59 +- irix + + fixed minor compile issues with MIPSpro + +01.03.2005 11:57 +- request-handling + + handle most duplicate headers as 400, Bug #25 + +- mod_fastcgi + + added more checks + +28.02.2005 18:26 +- mod_expire + + don't ignore 'modification' any more, Bug #39 + only handles static files + +- last-modified + + really compare timestamps, Bug #34 + +28.02.2005 11:54 +- buffer + + rewrote int2buffer functions + + simplified path_simplify + +- pid-file + + ignore EACCESS on unlink + +28.02.2005 10:35 +- mod_fastcgi + + accept \n\n, Bug #32 + +- cygwin + + moved functions used by plugin and main-program to *-glue.c + +- lemon + + removed warnings about shadowed variables + +28.02.2005 01:00 +- ssl + + added ssl.ca-file, Bug #19 + + improved error-messages + +27.02.2005 23:48 +- test cases + + rewrote to test-framework to use Perl + Test::More + ported more test-cases + +22.02.2005 01:20 +- mod_fastcgi + + replaced inet_addr by inet_aton + +- request-handling + + fixed segfault if host is empty + +20.02.2005 20:05 +- cgi + + fixed cgi.assign for empty handlers again + 20.02.2005 16:54 - 1.3.11 - request handling diff --git a/NEWS b/NEWS index 758a9a31..b697bb28 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,16 @@ NEWS ==== +- 1.3.12 - 2005-03-02 + + * added ssl.ca-file + * added support for \n\n as terminator + * rewrote test-framework and added more tests + * fixed cgi.assign with empty handler + * fixed segfault in debug-code + * fixed mod_expire if modification-timestamps are used + * fixed segfault on duplication Host-headers + - 1.3.11 - 2005-02-20 * added REMOTE_PORT and SERVER_ADDR to CGI-env @@ -22,7 +32,7 @@ NEWS * added support for full commandline in spawn-fcgi * fixed missing check for IP-address in mod_fastcgi * fixed compile error with openssl in mod_fastcgi - * removed a debug-message from network_freebsd_... + * removed a debug-message from network-functions - 1.3.9 - 2005-02-06 diff --git a/src/mod_compress.c b/src/mod_compress.c index 37ccd3e8..9f5977d1 100644 --- a/src/mod_compress.c +++ b/src/mod_compress.c @@ -128,7 +128,7 @@ SETDEFAULTS_FUNC(mod_compress_setdefaults) { p->config_storage[i] = s; if (0 != config_insert_values_global(srv, ((data_config *)srv->config_context->data[i])->value, cv)) { - return HANDLER_ERROR + return HANDLER_ERROR; } if (!buffer_is_empty(s->compress_cache_dir)) {