]> granicus.if.org Git - apache/commitdiff
mod_log_config: Fix a bug which prevented request completion time
authorJeff Trawick <trawick@apache.org>
Sun, 20 Jun 2004 13:08:06 +0000 (13:08 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 20 Jun 2004 13:08:06 +0000 (13:08 +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: Jeff Trawick

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103991 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/loggers/mod_log_config.c

diff --git a/CHANGES b/CHANGES
index f07218153bdb858c62b8b6e682d75b9106e61e6d..a29f59ea83338a93a965c17be5c7ca379abc812e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) 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>]
+
   *) initialize server arrays prior to calling ap_setup_prelinked_modules
      so that static modules can push Defines values when registering
      hooks just like DSO modules can ["Philippe M. Chiasson" <gozer cpan.org>]
index 8b898129fce43c900484f59c8e50f1fc2bc08972..96df3fa4347d0810e43527233694fe8c969081cd 100644 (file)
@@ -588,7 +588,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;