Return-Path: X-Original-To: apmail-apr-dev-archive@www.apache.org Delivered-To: apmail-apr-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 DD6079640 for ; Sun, 1 Apr 2012 21:05:21 +0000 (UTC) Received: (qmail 31013 invoked by uid 500); 1 Apr 2012 21:05:21 -0000 Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 30947 invoked by uid 500); 1 Apr 2012 21:05:21 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Id: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 30937 invoked by uid 99); 1 Apr 2012 21:05:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Apr 2012 21:05:21 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of trawick@gmail.com designates 209.85.220.178 as permitted sender) Received: from [209.85.220.178] (HELO mail-vx0-f178.google.com) (209.85.220.178) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Apr 2012 21:05:13 +0000 Received: by vcbgb30 with SMTP id gb30so2026113vcb.37 for ; Sun, 01 Apr 2012 14:04:53 -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:content-transfer-encoding; bh=ve93xv0MO4ArwFOEDlx3uA9K5G0z6oS1lXXFR9dUH34=; b=FG2fC3A/fpVs5jrha811Hy+NMZc4sFSCEDM2cY6no8yoy3bDO2lLskB63jF/5MebXH 9H6+33gIuzIjZv1A/er7VeZjHuW+QiutMOT3wRw3oqVdjGe9oc3X+idTeicHR5f7O2ek C5gzNJNpzpoyWMo4CatyjD+KYiqt9jN8zZLHGLW8movK2fHWFhv/k9vkqqqyWN+iPWfy HDpZegxr7g9K0mCCzXW3qIWwWs3ihfWhzvOBPledk0OP6QnnkqXKerKUddrwVfIcaFz7 F+YspsCIGxhd96dgTEcmiJN0BVIl8bBHrSrjFMV3BV4Xo5mFQZIkZDaBUnlX7iU4NUWU 8NSA== MIME-Version: 1.0 Received: by 10.220.141.133 with SMTP id m5mr2812500vcu.67.1333314293027; Sun, 01 Apr 2012 14:04:53 -0700 (PDT) Received: by 10.220.215.3 with HTTP; Sun, 1 Apr 2012 14:04:52 -0700 (PDT) In-Reply-To: References: <20120401152345.D155F238897A@eris.apache.org> Date: Sun, 1 Apr 2012 17:04:52 -0400 Message-ID: Subject: Re: svn commit: r1308135 - in /apr/apr-util/branches/1.4.x: ./ CHANGES crypto/apr_crypto.c From: Jeff Trawick To: dev@apr.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Sun, Apr 1, 2012 at 4:55 PM, Greg Stein wrote: > On Sun, Apr 1, 2012 at 11:23, =A0 wrote: >> Author: minfrin >> Date: Sun Apr =A01 15:23:45 2012 >> New Revision: 1308135 >> >> URL: http://svn.apache.org/viewvc?rev=3D1308135&view=3Drev >> Log: >> Backport: >> apr_crypto: Ensure the *driver variable is initialised when a statically >> compiled library is initialised for the first time. >> >> Modified: >> =A0 =A0apr/apr-util/branches/1.4.x/ =A0 (props changed) >> =A0 =A0apr/apr-util/branches/1.4.x/CHANGES >> =A0 =A0apr/apr-util/branches/1.4.x/crypto/apr_crypto.c >> >> Propchange: apr/apr-util/branches/1.4.x/ >> ------------------------------------------------------------------------= ------ >> =A0Merged /apr/apr/trunk:r1308131 > > -131 has no edit to CHANGES. > > When performing backports, you should commit *just* the backport. If > you want to make other changes, then keep them in a separate commit. > > Combining changes like this is poor branch policy. It means that we > can no longer trust that a backport is *JUST* the backport. We have to > investigate to determine whether other changes were made in the > commit. That adds an extra step to looking at the code changes for a CHANGES entry, if indeed the merger/backporter remembered to list the code change in the CHANGES commit. (Otherwise it is more painful.) I guess you mean that the "trust" part comes not from backports in general but only from a a "touchless" merge. Generally a "backport" may require minor changes to reflect other differences in the branch.