Author: pburba
Date: Fri Jul 15 19:39:05 2011
New Revision: 1147293
URL: http://svn.apache.org/viewvc?rev=1147293&view=rev
Log:
Follow-up to r1099992: Fix issue #3960 'URL-to-WC copy with --quiet
segfaults'.
* subversion/svn/copy-cmd.c
(svn_cl__copy): Don't make a notifier with --quiet option.
Modified:
subversion/trunk/subversion/svn/copy-cmd.c
Modified: subversion/trunk/subversion/svn/copy-cmd.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/copy-cmd.c?rev=1147293&r1=1147292&r2=1147293&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/copy-cmd.c (original)
+++ subversion/trunk/subversion/svn/copy-cmd.c Fri Jul 15 19:39:05 2011
@@ -99,8 +99,9 @@ svn_cl__copy(apr_getopt_t *os,
}
else if ((srcs_are_urls) && (! dst_is_url))
{
- /* URL->WC : Use checkout-style notification. */
- SVN_ERR(svn_cl__notifier_mark_checkout(ctx->notify_baton2));
+ /* URL->WC : Use checkout-style notification. */
+ if (! opt_state->quiet)
+ SVN_ERR(svn_cl__notifier_mark_checkout(ctx->notify_baton2));
}
else
{