]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_log_config: Fix a bug which prevented request completion time
authorJeff Trawick <trawick@apache.org>
Thu, 2 Sep 2004 11:18:45 +0000 (11:18 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 2 Sep 2004 11:18:45 +0000 (11:18 +0000)
from being logged for I_INSIST_ON_EXTRA_CYCLES_FOR_CLF_COMPLIANCE
processing.

PR:             29696
Submitted by: Alois Treindl <alois astro.ch>
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

CHANGES
STATUS
modules/loggers/mod_log_config.c

diff --git a/CHANGES b/CHANGES
index 6711380189ab77e7770e39be4a1213ec61b76c69..58a4f23d2eb2a15bcbcaceadd2c54b36c2f8d706 100644 (file)
--- 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 <alois astro.ch>]
+
   *) 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 ca848f8d3e12c87ec8c40bac22823718c802ec0c..110806c4baf84dc50191df89bcbe99851520c0be 100644 (file)
--- 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 <alois astro.ch>]
-         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
index 4e22279b74689ca48f796a72806fe9c79f171b28..310ccac26292cfb1f557859d544edb1d19d3694b 100644 (file)
@@ -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;