Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 61512 invoked by uid 500); 9 Nov 2001 17:02:26 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 61497 invoked from network); 9 Nov 2001 17:02:26 -0000 Date: 9 Nov 2001 16:50:22 -0000 Message-ID: <20011109165022.15110.qmail@icarus.apache.org> From: gbenson@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/c-modules/echo_post mod_echo_post.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N gbenson 01/11/09 08:50:22 Modified: perl-framework/c-modules/echo_post mod_echo_post.c Log: Compile correctly for Apache 1.3. Submitted by: Joe Orton Revision Changes Path 1.6 +4 -1 httpd-test/perl-framework/c-modules/echo_post/mod_echo_post.c Index: mod_echo_post.c =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/c-modules/echo_post/mod_echo_post.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- mod_echo_post.c 2001/10/22 10:46:35 1.5 +++ mod_echo_post.c 2001/11/09 16:50:22 1.6 @@ -24,7 +24,10 @@ } if ((rc = ap_setup_client_block(r, REQUEST_CHUNKED_ERROR)) != OK) { - ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, + ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, +#ifdef APACHE2 + 0, +#endif /* APACHE2 */ r->server, "[mod_echo_post] ap_setup_client_block failed: %d", rc); return 0;