You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2012/05/08 06:24:32 UTC

svn commit: r1335333 - /subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c

Author: hwright
Date: Tue May  8 04:24:31 2012
New Revision: 1335333

URL: http://svn.apache.org/viewvc?rev=1335333&view=rev
Log:
On the ev2-export branch:
Fetch the children of the actual working node, not whatever happened to
be there before.  This is pertinent in the case of replaced directories.

* subversion/libsvn_client/commit_util.c
  (do_item_commit): Use svn_wc__node_get_children_of_working_node() to get
    the children of an added directory.

Modified:
    subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c

Modified: subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c
URL: http://svn.apache.org/viewvc/subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c?rev=1335333&r1=1335332&r2=1335333&view=diff
==============================================================================
--- subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c (original)
+++ subversion/branches/ev2-export/subversion/libsvn_client/commit_util.c Tue May  8 04:24:31 2012
@@ -1654,7 +1654,7 @@ do_item_commit(svn_client_commit_item3_t
 
           SVN_ERR_ASSERT(props != NULL);
 
-          SVN_ERR(svn_wc__node_get_children(&children_abspaths,
+          SVN_ERR(svn_wc__node_get_children_of_working_node(&children_abspaths,
                                             ctx->wc_ctx, item->path, FALSE,
                                             scratch_pool, scratch_pool));