Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 2418 invoked from network); 15 Oct 2003 22:34:12 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 15 Oct 2003 22:34:12 -0000 Received: (qmail 61077 invoked by uid 500); 15 Oct 2003 22:33:58 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 61010 invoked by uid 500); 15 Oct 2003 22:33:58 -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 60996 invoked from network); 15 Oct 2003 22:33:57 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 15 Oct 2003 22:33:57 -0000 Received: (qmail 2391 invoked by uid 1569); 15 Oct 2003 22:34:11 -0000 Date: 15 Oct 2003 22:34:11 -0000 Message-ID: <20031015223411.2390.qmail@minotaur.apache.org> From: nd@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/c-modules/echo_post_chunk mod_echo_post_chunk.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N nd 2003/10/15 15:34:11 Modified: perl-framework/c-modules/echo_post_chunk mod_echo_post_chunk.c Log: fix link error with apr 1.0 Revision Changes Path 1.2 +1 -1 httpd-test/perl-framework/c-modules/echo_post_chunk/mod_echo_post_chunk.c Index: mod_echo_post_chunk.c =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/c-modules/echo_post_chunk/mod_echo_post_chunk.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- mod_echo_post_chunk.c 3 Jun 2002 07:08:27 -0000 1.1 +++ mod_echo_post_chunk.c 15 Oct 2003 22:34:11 -0000 1.2 @@ -56,7 +56,7 @@ total += nrd; } - trailer_header = ap_table_get(r->headers_in, "X-Chunk-Trailer"); + trailer_header = apr_table_get(r->headers_in, "X-Chunk-Trailer"); if (!trailer_header) { trailer_header = "No chunked trailer available!"; }