Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 43303 invoked from network); 12 May 2004 20:09:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 12 May 2004 20:09:15 -0000 Received: (qmail 38463 invoked by uid 500); 12 May 2004 20:09:09 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 38267 invoked by uid 500); 12 May 2004 20:09:08 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 37882 invoked by uid 500); 12 May 2004 20:09:04 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 37757 invoked by uid 98); 12 May 2004 20:09:03 -0000 Received: from wrowe@apache.org by hermes.apache.org by uid 82 with qmail-scanner-1.20 (clamuko: 0.70. Clear:RC:0(209.237.227.194):. Processed in 0.077447 secs); 12 May 2004 20:09:03 -0000 X-Qmail-Scanner-Mail-From: wrowe@apache.org via hermes.apache.org X-Qmail-Scanner: 1.20 (Clear:RC:0(209.237.227.194):. Processed in 0.077447 secs) Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by hermes.apache.org with SMTP; 12 May 2004 20:09:03 -0000 Received: (qmail 42945 invoked by uid 1134); 12 May 2004 20:08:36 -0000 Date: 12 May 2004 20:08:36 -0000 Message-ID: <20040512200836.42944.qmail@minotaur.apache.org> From: wrowe@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/loggers mod_log_forensic.c X-Spam-Rating: hermes.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 #include "http_protocol.h" #include "test_char.h" +#if APR_HAVE_UNISTD_H +#include +#endif module AP_MODULE_DECLARE_DATA log_forensic_module;