You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2004/05/12 22:08:36 UTC

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

wrowe       2004/05/12 13:08:36

  Modified:    .        Tag: APACHE_2_0_BRANCH STATUS
               modules/loggers Tag: APACHE_2_0_BRANCH mod_log_forensic.c
  Log:
    Implicit (third) +1, backport trivial fix for missing unistd.h
    rev 1.19 of mod_log_forensic
  
  Contributor: Gunter
  Verified by: trawick, nd, wrowe
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.751.2.851 +1 -5      httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.751.2.850
  retrieving revision 1.751.2.851
  diff -u -r1.751.2.850 -r1.751.2.851
  --- STATUS	7 May 2004 21:49:34 -0000	1.751.2.850
  +++ STATUS	12 May 2004 20:08:35 -0000	1.751.2.851
  @@ -87,10 +87,6 @@
            server/mpm/winnt/child.c: r1.36 
          +1: ake, trawick
   
  -    *) mod_log_forensic: Fix build on systems without unistd.h. PR 28572
  -         modules/loggers/mod_log_forensic.c: r1.19
  -       +1: nd, trawick
  -
       *) mod_actions: Regression from 1.3: the file referred to must exist.
          Solve this by introducing the "virtual" modifier to the Action
          directive. PR 28553.
  
  
  
  No                   revision
  No                   revision
  1.18.2.2  +3 -1      httpd-2.0/modules/loggers/mod_log_forensic.c
  
  Index: mod_log_forensic.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/loggers/mod_log_forensic.c,v
  retrieving revision 1.18.2.1
  retrieving revision 1.18.2.2
  diff -u -r1.18.2.1 -r1.18.2.2
  --- mod_log_forensic.c	11 Apr 2004 18:36:58 -0000	1.18.2.1
  +++ mod_log_forensic.c	12 May 2004 20:08:36 -0000	1.18.2.2
  @@ -30,9 +30,11 @@
   #include "http_log.h"
   #include "apr_strings.h"
   #include "apr_atomic.h"
  -#include <unistd.h>
   #include "http_protocol.h"
   #include "test_char.h"
  +#if APR_HAVE_UNISTD_H
  +#include <unistd.h>
  +#endif
   
   module AP_MODULE_DECLARE_DATA log_forensic_module;