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 49B5876BD for ; Fri, 11 Nov 2011 12:27:25 +0000 (UTC) Received: (qmail 21145 invoked by uid 500); 11 Nov 2011 12:27:25 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 21122 invoked by uid 500); 11 Nov 2011 12:27:25 -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 21115 invoked by uid 99); 11 Nov 2011 12:27:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Nov 2011 12:27:25 +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: local policy) Received: from [66.111.4.26] (HELO out2.smtp.messagingengine.com) (66.111.4.26) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Nov 2011 12:27:18 +0000 Received: from compute6.internal (compute6.nyi.mail.srv.osa [10.202.2.46]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id D028121237 for ; Fri, 11 Nov 2011 07:26:57 -0500 (EST) Received: from web1.nyi.mail.srv.osa ([10.202.2.211]) by compute6.internal (MEProxy); Fri, 11 Nov 2011 07:26:57 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=message-id:from:to:cc:mime-version :content-transfer-encoding:content-type:in-reply-to:references :subject:date; s=mesmtp; bh=c8uTxpmiWRcEeTnMgUN9cl8+nqY=; b=VFx1 h0iwpBfboftDlZnnMF+mKMScqKd4AyZfQeyB/kwXJm7DpfUwZxkjENI09Sq6IJrW Mtg/I5afKsZqUsryIvnZz9TPmj4oU5hynLrrWQl2Cek2px2FrrhVxBiizHiBpCIL DyKaddaq6TVUfnklnMZLKXBmL+i1RVk4KOneUI8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:cc:mime-version :content-transfer-encoding:content-type:in-reply-to:references :subject:date; s=smtpout; bh=c8uTxpmiWRcEeTnMgUN9cl8+nqY=; b=MhU jD3vgGxVG2ZXBqbXaYWrfYYYgcotyWPfCK7m5qCdW/sT9bcq4wolKo6e1lvp0W9B VUhCqICrQ3HQxpDPzGTFw8X5F9XKJHU+Gow/0oRO5UAkjcuGfF0maW2YwAPq/gQ/ 4+7aKwWtHvKNgg4hmRHaXoVzRYxpoMhnwuiJK66Y= Received: by web1.nyi.mail.srv.osa (Postfix, from userid 99) id AA794A00086; Fri, 11 Nov 2011 07:26:57 -0500 (EST) Message-Id: <1321014417.20808.140660997601793@webmail.messagingengine.com> X-Sasl-Enc: +rs4g1oFu0nSi08t1hkaRlzl8zu2ovfguaLpxzC+agHJ 1321014417 From: "Daniel Shahaf" To: dev@subversion.apache.org Cc: commits@subversion.apache.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii" X-Mailer: MessagingEngine.com Webmail Interface In-Reply-To: <20111111120750.258E52388860@eris.apache.org> References: <20111111120750.258E52388860@eris.apache.org> Subject: Re: svn commit: r1200837 - in /subversion/trunk/subversion: svn/commit-cmd.c svn/copy-cmd.c svn/delete-cmd.c svn/import-cmd.c svn/mkdir-cmd.c svn/move-cmd.c tests/cmdline/basic_tests.py Date: Fri, 11 Nov 2011 14:26:57 +0200 X-Virus-Checked: Checked by ClamAV on apache.org On Friday, November 11, 2011 12:07 PM, philip@apache.org wrote: > Modified: subversion/trunk/subversion/svn/delete-cmd.c > URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/delete-cmd.c?rev=1200837&r1=1200836&r2=1200837&view=diff > ============================================================================== > --- subversion/trunk/subversion/svn/delete-cmd.c (original) > +++ subversion/trunk/subversion/svn/delete-cmd.c Fri Nov 11 12:07:49 2011 > @@ -79,7 +79,9 @@ svn_cl__delete(apr_getopt_t *os, > SVN_ERR(svn_cl__eat_peg_revisions(&targets, targets, pool)); > > err = svn_client_delete4(targets, opt_state->force, opt_state->keep_local, > - opt_state->revprop_table, svn_cl__print_commit_info, > + opt_state->revprop_table, > + (opt_state->quiet > + ? NULL : svn_cl__print_commit_info), > NULL, ctx, pool); > if (err) > err = svn_cl__may_need_force(err); > > Modified: subversion/trunk/subversion/svn/import-cmd.c > URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/import-cmd.c?rev=1200837&r1=1200836&r2=1200837&view=diff > ============================================================================== > --- subversion/trunk/subversion/svn/import-cmd.c (original) > +++ subversion/trunk/subversion/svn/import-cmd.c Fri Nov 11 12:07:49 2011 > @@ -120,7 +120,8 @@ svn_cl__import(apr_getopt_t *os, > opt_state->no_ignore, > opt_state->force, > opt_state->revprop_table, > - svn_cl__print_commit_info, > + (opt_state->quiet > + ? NULL : svn_cl__print_commit_info), > NULL, For next time, perhaps it would be better to, instead, pass a baton and let the callback figure out whether or not to print. *shrug*