Return-Path: X-Original-To: apmail-httpd-dev-archive@www.apache.org Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C1C22180DF for ; Fri, 21 Aug 2015 14:30:08 +0000 (UTC) Received: (qmail 34800 invoked by uid 500); 21 Aug 2015 14:30:00 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 34735 invoked by uid 500); 21 Aug 2015 14:30:00 -0000 Mailing-List: contact dev-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 dev@httpd.apache.org Received: (qmail 34720 invoked by uid 99); 21 Aug 2015 14:30:00 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Aug 2015 14:30:00 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id E75CE1AA979 for ; Fri, 21 Aug 2015 14:29:59 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.102 X-Spam-Level: X-Spam-Status: No, score=-0.102 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_PASS=-0.001] autolearn=disabled Authentication-Results: spamd2-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id z31S-VAN4snU for ; Fri, 21 Aug 2015 14:29:59 +0000 (UTC) Received: from mail-io0-f172.google.com (mail-io0-f172.google.com [209.85.223.172]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTPS id 1D0E242B14 for ; Fri, 21 Aug 2015 14:29:59 +0000 (UTC) Received: by iodv127 with SMTP id v127so83224849iod.3 for ; Fri, 21 Aug 2015 07:29:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=6C7HSSM7m40qQWgM3C23xpHT9GD2+h8mERx3AOBpnjQ=; b=bz1ve19QPITUlkJUQOthY77v2sMZ8aWJR8BMyvkU0B1C+0AGNohKvqiOub0SpMnz6g uYFS5rKXciBWV0v0ly96l9xGSf+Vovbi/9s2YMs7jVO10D2vSXkFef3LvzSHhpZyG6xH cLuzCELrYPi6etu7FEiwD/ILQrpPqbhWw6URT7en5MwCjoe7jbvudwyEhkR9wXX+tflf J0pyd7OpTOEy9qnuaxI5CYKr+bbJC6sT8NaWBggQQbkJgPw1s9ffX/qshXV2PYNsuL7s eFrR5txbgWhC6CZzy5PZgMWvtWdLbSPaEx2mLNqbhK8L7pykdseNhv/75B796yoL6fef ZpNA== MIME-Version: 1.0 X-Received: by 10.107.150.145 with SMTP id y139mr6941662iod.128.1440167398647; Fri, 21 Aug 2015 07:29:58 -0700 (PDT) Received: by 10.79.26.197 with HTTP; Fri, 21 Aug 2015 07:29:58 -0700 (PDT) In-Reply-To: <55D734EC.4000904@apache.org> References: <20150821141918.18EBBAC07C2@hades.apache.org> <55D734EC.4000904@apache.org> Date: Fri, 21 Aug 2015 16:29:58 +0200 Message-ID: Subject: Re: svn commit: r1697002 - /httpd/httpd/trunk/modules/filters/mod_substitute.c From: Yann Ylavic To: dev@httpd.apache.org Content-Type: text/plain; charset=UTF-8 On Fri, Aug 21, 2015 at 4:25 PM, Ruediger Pluem wrote: > Wasn't it intended for trunk to change the default behavior? Yes it was, still when inherit_before is set we need to do that. The code in trunk is: if (a->inherit_before == 1) { whereas 2.4 and 2.2 (would) have: if (a->inherit_before) { <= can be 1 but also -1 Regards, Yann.