From: Jeff Trawick Date: Thu, 2 Sep 2004 11:18:45 +0000 (+0000) Subject: mod_log_config: Fix a bug which prevented request completion time X-Git-Tag: 2.0.51~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=241338d20e25803c2d7bc88ed27213feaea8f2f1;p=thirdparty%2Fapache%2Fhttpd.git mod_log_config: Fix a bug which prevented request completion time from being logged for I_INSIST_ON_EXTRA_CYCLES_FOR_CLF_COMPLIANCE processing. PR: 29696 Submitted by: Alois Treindl Reviewed by: trawick, nd, jerenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@104932 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 6711380189a..58a4f23d2eb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.51 + *) mod_log_config: Fix a bug which prevented request completion time + from being logged for I_INSIST_ON_EXTRA_CYCLES_FOR_CLF_COMPLIANCE + processing. PR 29696. [Alois Treindl ] + *) mod_include no longer checks for recursion, because that's done in the core. This allows for careful usage of recursive SSI. [André Malo] diff --git a/STATUS b/STATUS index ca848f8d3e1..110806c4baf 100644 --- a/STATUS +++ b/STATUS @@ -1,5 +1,5 @@ APACHE 2.0 STATUS: -*-text-*- -Last modified at [$Date: 2004/09/01 18:54:14 $] +Last modified at [$Date: 2004/09/02 11:18:44 $] Release: @@ -169,12 +169,6 @@ PATCHES TO BACKPORT FROM 2.1 have already. *shrug* Regardless, patch looks okay... +1: nd, jerenkrantz - *) mod_log_config: Fix a bug which prevented request completion time - from being logged for I_INSIST_ON_EXTRA_CYCLES_FOR_CLF_COMPLIANCE - processing. PR 29696. [Alois Treindl ] - http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/loggers/mod_log_config.c?r1=1.118&r2=1.119 - +1: trawick, nd, jerenkrantz - *) mod_dav: Send an EOS at the end of the multistatus brigade. http://cvs.apache.org/viewcvs.cgi/httpd-2.0/modules/dav/main/mod_dav.c?r1=1.105&r2=1.106 +1: jorton, jerenkrantz diff --git a/modules/loggers/mod_log_config.c b/modules/loggers/mod_log_config.c index 4e22279b746..310ccac2629 100644 --- a/modules/loggers/mod_log_config.c +++ b/modules/loggers/mod_log_config.c @@ -520,7 +520,7 @@ static const char *log_request_time(request_rec *r, char *a) char sign; int timz; - ap_explode_recent_localtime(&xt, r->request_time); + ap_explode_recent_localtime(&xt, request_time); timz = xt.tm_gmtoff; if (timz < 0) { timz = -timz;