Return-Path: X-Original-To: apmail-subversion-dev-archive@minotaur.apache.org Delivered-To: apmail-subversion-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C16A39D8A for ; Mon, 6 Feb 2012 19:29:05 +0000 (UTC) Received: (qmail 89078 invoked by uid 500); 6 Feb 2012 19:29:05 -0000 Delivered-To: apmail-subversion-dev-archive@subversion.apache.org Received: (qmail 89028 invoked by uid 500); 6 Feb 2012 19:29:04 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 89021 invoked by uid 99); 6 Feb 2012 19:29:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2012 19:29:04 +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 (athena.apache.org: domain of gstein@gmail.com designates 209.85.212.43 as permitted sender) Received: from [209.85.212.43] (HELO mail-vw0-f43.google.com) (209.85.212.43) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Feb 2012 19:28:57 +0000 Received: by vbbfq11 with SMTP id fq11so7537062vbb.16 for ; Mon, 06 Feb 2012 11:28:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=mcLLNoSlqjP5aCbysqlBF/T4kWB77cz5NOmubSZglj8=; b=hlamC9nJvA8Pb5ziwD9qZ7Ikg0LsGkKujp2AgxPyGbWrnJ4aRdPqITEeGv+QtxmFmZ nKEK2sahM/3c8/e0uqsmkmRCPTYH1lUlzWhCJ3/deUjFKY1anuN1NA9p6qHKe2YpkdOi pXDh/Ddug8GkzR3eaOK8Fnh2mwWIs5wSoNnCY= MIME-Version: 1.0 Received: by 10.52.72.5 with SMTP id z5mr9375365vdu.63.1328556517064; Mon, 06 Feb 2012 11:28:37 -0800 (PST) Received: by 10.220.75.17 with HTTP; Mon, 6 Feb 2012 11:28:37 -0800 (PST) In-Reply-To: <20120206174836.DB1AC238889B@eris.apache.org> References: <20120206174836.DB1AC238889B@eris.apache.org> Date: Mon, 6 Feb 2012 14:28:37 -0500 Message-ID: Subject: Re: svn commit: r1241097 - in /subversion/trunk/subversion: libsvn_client/repos_diff.c libsvn_delta/compat.c libsvn_fs_base/tree.c libsvn_fs_fs/tree.c libsvn_wc/externals.c libsvn_wc/update_editor.c From: Greg Stein To: dev@subversion.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Mon, Feb 6, 2012 at 12:48, wrote: > Author: hwright > Date: Mon Feb =A06 17:48:36 2012 > New Revision: 1241097 > > URL: http://svn.apache.org/viewvc?rev=3D1241097&view=3Drev > Log: > Ev2 shims: Truthfully report our base checksum as being that of the empty > stream. > > Note: This breaks several assumptions in various delta-editor receivers a= bout > the validity of this checksum. =A0These have been patched to ignore the c= hecksum > if it is that of the empty stream. =A0This will not affect correctness, a= s the > final checksum, as supplied by close_file() is still used to detect corru= ption, > and it hasn't changed. How does this even work? Sure, the checksum isn't checked, but the delta-editor receiver is going to choose the wrong base contents to apply the delta against. >... Cheers, -g