You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2004/09/02 13:18:45 UTC

cvs commit: httpd-2.0/modules/loggers mod_log_config.c

trawick     2004/09/02 04:18:45

  Modified:    .        Tag: APACHE_2_0_BRANCH CHANGES STATUS
               modules/loggers Tag: APACHE_2_0_BRANCH mod_log_config.c
  Log:
  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 <alois astro.ch>
  Reviewed by:	trawick, nd, jerenkrantz
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.988.2.347 +4 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.988.2.346
  retrieving revision 1.988.2.347
  diff -u -r1.988.2.346 -r1.988.2.347
  --- CHANGES	2 Sep 2004 09:52:02 -0000	1.988.2.346
  +++ CHANGES	2 Sep 2004 11:18:44 -0000	1.988.2.347
  @@ -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]
  
  
  
  1.751.2.1038 +1 -7      httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.751.2.1037
  retrieving revision 1.751.2.1038
  diff -u -r1.751.2.1037 -r1.751.2.1038
  --- STATUS	1 Sep 2004 18:54:14 -0000	1.751.2.1037
  +++ STATUS	2 Sep 2004 11:18:44 -0000	1.751.2.1038
  @@ -169,12 +169,6 @@
                       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
  
  
  
  No                   revision
  No                   revision
  1.95.2.14 +1 -1      httpd-2.0/modules/loggers/mod_log_config.c
  
  Index: mod_log_config.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/loggers/mod_log_config.c,v
  retrieving revision 1.95.2.13
  retrieving revision 1.95.2.14
  diff -u -r1.95.2.13 -r1.95.2.14
  --- mod_log_config.c	1 Jun 2004 15:30:16 -0000	1.95.2.13
  +++ mod_log_config.c	2 Sep 2004 11:18:45 -0000	1.95.2.14
  @@ -520,7 +520,7 @@
               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;