You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2010/08/09 13:24:00 UTC

svn commit: r983591 - /subversion/trunk/subversion/svn/propedit-cmd.c

Author: julianfoad
Date: Mon Aug  9 11:23:59 2010
New Revision: 983591

URL: http://svn.apache.org/viewvc?rev=983591&view=rev
Log:
* subversion/svn/propedit-cmd.c
  (svn_cl__propedit): Disable the generic notifications, to avoid double
    notifications, because for whatever reason we do our own in this file.
    A follow-up to r965665.

Modified:
    subversion/trunk/subversion/svn/propedit-cmd.c

Modified: subversion/trunk/subversion/svn/propedit-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/propedit-cmd.c?rev=983591&r1=983590&r2=983591&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/propedit-cmd.c (original)
+++ subversion/trunk/subversion/svn/propedit-cmd.c Mon Aug  9 11:23:59 2010
@@ -98,6 +98,9 @@ svn_cl__propedit(apr_getopt_t *os,
                                                       opt_state->targets,
                                                       ctx, pool));
 
+  /* We do our own notifications */
+  ctx->notify_func2 = NULL;
+
   if (opt_state->revprop)  /* operate on a revprop */
     {
       svn_revnum_t rev;