You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2010/06/30 01:03:27 UTC

svn commit: r959135 - /subversion/trunk/subversion/libsvn_client/commit_util.c

Author: rhuijben
Date: Tue Jun 29 23:03:27 2010
New Revision: 959135

URL: http://svn.apache.org/viewvc?rev=959135&view=rev
Log:
* subversion/libsvn_client/commit_util.c
  (harvest_committables): Following up on r959112, revert a functional
    change that shouldn't have been a functional change.

Modified:
    subversion/trunk/subversion/libsvn_client/commit_util.c

Modified: subversion/trunk/subversion/libsvn_client/commit_util.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/commit_util.c?rev=959135&r1=959134&r2=959135&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/commit_util.c (original)
+++ subversion/trunk/subversion/libsvn_client/commit_util.c Tue Jun 29 23:03:27 2010
@@ -522,7 +522,7 @@ harvest_committables(apr_hash_t *committ
           svn_boolean_t is_copy_target;
           /* ### TODO: sensibly align this call of get_copyfrom_info() with
            * the same call below (when checking added nodes). */
-          SVN_ERR(svn_wc__node_get_copyfrom_info(&is_copy, NULL, NULL, NULL,
+          SVN_ERR(svn_wc__node_get_copyfrom_info(NULL, NULL, &is_copy, NULL,
                                                  &is_copy_target, ctx->wc_ctx,
                                                  local_abspath, scratch_pool,
                                                  scratch_pool));