Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6B6A9D101 for ; Mon, 22 Oct 2012 16:20:14 +0000 (UTC) Received: (qmail 15311 invoked by uid 500); 22 Oct 2012 16:20:14 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 15078 invoked by uid 500); 22 Oct 2012 16:20:10 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 15057 invoked by uid 99); 22 Oct 2012 16:20:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Oct 2012 16:20:09 +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; Mon, 22 Oct 2012 16:20:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7558123888E4; Mon, 22 Oct 2012 16:19:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1400936 - /subversion/trunk/subversion/libsvn_ra/ra_loader.c Date: Mon, 22 Oct 2012 16:19:23 -0000 To: commits@subversion.apache.org From: philip@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121022161923.7558123888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: philip Date: Mon Oct 22 16:19:22 2012 New Revision: 1400936 URL: http://svn.apache.org/viewvc?rev=1400936&view=rev Log: Followup to r1400545, fix replay failures. * subversion/libsvn_ra/ra_loader.c (svn_ra_replay_range): Only call the fallback implementation when replay_range returns SVN_ERR_RA_NOT_IMPLEMENTED. Modified: subversion/trunk/subversion/libsvn_ra/ra_loader.c Modified: subversion/trunk/subversion/libsvn_ra/ra_loader.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra/ra_loader.c?rev=1400936&r1=1400935&r2=1400936&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_ra/ra_loader.c (original) +++ subversion/trunk/subversion/libsvn_ra/ra_loader.c Mon Oct 22 16:19:22 2012 @@ -1189,7 +1189,7 @@ svn_ra_replay_range(svn_ra_session_t *se revstart_func, revfinish_func, replay_baton, pool); - if (err && (err->apr_err != SVN_ERR_RA_NOT_IMPLEMENTED)) + if (!err || (err && (err->apr_err != SVN_ERR_RA_NOT_IMPLEMENTED))) return svn_error_trace(err); svn_error_clear(err);