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/11/23 17:11:55 UTC

svn commit: r1038185 - /subversion/trunk/subversion/libsvn_wc/wc_db.c

Author: julianfoad
Date: Tue Nov 23 16:11:55 2010
New Revision: 1038185

URL: http://svn.apache.org/viewvc?rev=1038185&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
  (make_copy_txn): Use gather_children() instead of its public wrapper.

Modified:
    subversion/trunk/subversion/libsvn_wc/wc_db.c

Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1038185&r1=1038184&r2=1038185&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Tue Nov 23 16:11:55 2010
@@ -8907,8 +8907,8 @@ make_copy_txn(void *baton,
     SVN_ERR(svn_sqlite__reset(stmt));
 
   /* Get the BASE children, as WORKING children don't need modifications */
-  SVN_ERR(svn_wc__db_base_get_children(&children, mcb->db, mcb->local_abspath,
-                                       scratch_pool, iterpool));
+  SVN_ERR(gather_children(&children, TRUE, mcb->pdh, mcb->local_relpath,
+                          scratch_pool, iterpool));
 
   for (i = 0; i < children->nelts; i++)
     {