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 4B60D108F3 for ; Mon, 1 Jul 2013 12:06:24 +0000 (UTC) Received: (qmail 38750 invoked by uid 500); 1 Jul 2013 12:06:24 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 38320 invoked by uid 500); 1 Jul 2013 12:06:23 -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 38306 invoked by uid 99); 1 Jul 2013 12:06:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jul 2013 12:06:23 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [78.47.87.163] (HELO mx0.elegosoft.com) (78.47.87.163) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jul 2013 12:06:16 +0000 Received: from localhost (localhost [127.0.0.1]) by mx0.elegosoft.com (Postfix) with ESMTP id CE28CDE051; Mon, 1 Jul 2013 14:05:55 +0200 (CEST) Received: from mx0.elegosoft.com ([127.0.0.1]) by localhost (mx0.elegosoft.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sZHOBrNaRRki; Mon, 1 Jul 2013 14:05:55 +0200 (CEST) Received: from lp-shahaf.local (bzq-79-181-171-73.red.bezeqint.net [79.181.171.73]) by mx0.elegosoft.com (Postfix) with ESMTPSA id 6C760DE00E; Mon, 1 Jul 2013 14:05:55 +0200 (CEST) Date: Mon, 1 Jul 2013 15:05:52 +0300 From: Daniel Shahaf To: dev@subversion.apache.org Cc: commits@subversion.apache.org Subject: Re: svn commit: r1498394 - in /subversion/branches/verify-keep-going/subversion: libsvn_repos/dump.c svnadmin/svnadmin.c Message-ID: <20130701120552.GD2976@lp-shahaf.local> References: <20130701120138.9C9D12388980@eris.apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130701120138.9C9D12388980@eris.apache.org> User-Agent: Mutt/1.5.18 (2008-05-17) X-Virus-Checked: Checked by ClamAV on apache.org prabhugs@apache.org wrote on Mon, Jul 01, 2013 at 12:01:38 -0000: > /* Show the summary. */ > - if (notify_func && keep_going) > + if (notify_func && keep_going && found_corruption) > { > notify_verification_summary(err, notify_func, notify_baton, iterpool); Thanks. > +++ subversion/branches/verify-keep-going/subversion/svnadmin/svnadmin.c Mon Jul 1 12:01:38 2013 > @@ -850,13 +850,16 @@ repos_notify_handler(void *baton, > case svn_repos_notify_failure_summary: > if (notify->revision != SVN_INVALID_REVNUM) > cmdline_stream_printf(feedback_stream, scratch_pool, > - _("r%ld: %s\n"), > - notify->revision, notify->err->message); > + _("\nRevision %ld \n"), > + notify->revision); > + if (notify->err) > + svn_handle_error2(notify->err, stderr, FALSE /* non-fatal */, > + "svnadmin: "); How about using "svnadmin: r%ld: " as the prefix, for clarity? Daniel