Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9D34711CFB for ; Tue, 26 Aug 2014 17:20:47 +0000 (UTC) Received: (qmail 29942 invoked by uid 500); 26 Aug 2014 17:20:47 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 29879 invoked by uid 500); 26 Aug 2014 17:20:47 -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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 29870 invoked by uid 99); 26 Aug 2014 17:20:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Aug 2014 17:20:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Aug 2014 17:20:25 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5B11D23888E2; Tue, 26 Aug 2014 17:20:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1620663 - /httpd/test/framework/trunk/c-modules/echo_post_chunk/mod_echo_post_chunk.c Date: Tue, 26 Aug 2014 17:20:24 -0000 To: cvs@httpd.apache.org From: covener@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140826172024.5B11D23888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: covener Date: Tue Aug 26 17:20:23 2014 New Revision: 1620663 URL: http://svn.apache.org/r1620663 Log: add 2.4 MMN where trailers_in must be used Modified: httpd/test/framework/trunk/c-modules/echo_post_chunk/mod_echo_post_chunk.c Modified: httpd/test/framework/trunk/c-modules/echo_post_chunk/mod_echo_post_chunk.c URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/c-modules/echo_post_chunk/mod_echo_post_chunk.c?rev=1620663&r1=1620662&r2=1620663&view=diff ============================================================================== --- httpd/test/framework/trunk/c-modules/echo_post_chunk/mod_echo_post_chunk.c (original) +++ httpd/test/framework/trunk/c-modules/echo_post_chunk/mod_echo_post_chunk.c Tue Aug 26 17:20:23 2014 @@ -69,6 +69,8 @@ static int echo_post_chunk_handler(reque trailer_header = ap_table_get(r->headers_in, "X-Chunk-Trailer"); #elif (MODULE_MAGIC_COOKIE >= 0x41503235UL) && AP_MODULE_MAGIC_AT_LEAST(20140627,5) trailer_header = apr_table_get(r->trailers_in, "X-Chunk-Trailer"); +#elif (MODULE_MAGIC_COOKIE >= 0x41503234UL) && AP_MODULE_MAGIC_AT_LEAST(20120211,37) + trailer_header = apr_table_get(r->trailers_in, "X-Chunk-Trailer"); #elif (MODULE_MAGIC_COOKIE == 0x41503232UL) && AP_MODULE_MAGIC_AT_LEAST(20051115,36) trailer_header = apr_table_get(r->trailers_in, "X-Chunk-Trailer"); #else