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 2014/01/26 21:02:27 UTC

svn commit: r1561542 - /subversion/branches/1.7.x/subversion/libsvn_wc/wc_db.c

Author: rhuijben
Date: Sun Jan 26 20:02:27 2014
New Revision: 1561542

URL: http://svn.apache.org/r1561542
Log:
* subversion/libsvn_wc/wc_db.c
  (db_op_copy): Fixing function reference under the obvious fix rule, with the
    assumption that this will be reviewed on the mailing list anyway.

Modified:
    subversion/branches/1.7.x/subversion/libsvn_wc/wc_db.c

Modified: subversion/branches/1.7.x/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.7.x/subversion/libsvn_wc/wc_db.c?rev=1561542&r1=1561541&r2=1561542&view=diff
==============================================================================
--- subversion/branches/1.7.x/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/branches/1.7.x/subversion/libsvn_wc/wc_db.c Sun Jan 26 20:02:27 2014
@@ -3613,9 +3613,9 @@ db_op_copy(svn_wc__db_wcroot_t *src_wcro
 
           /* Pass the right repos-id for the destination db! */
 
-          SVN_ERR(svn_wc__db_fetch_repos_info(&repos_root_url, &repos_uuid,
-                                              src_wcroot->sdb, copyfrom_id,
-                                              scratch_pool));
+          SVN_ERR(fetch_repos_info(&repos_root_url, &repos_uuid,
+                                   src_wcroot->sdb, copyfrom_id,
+                                   scratch_pool));
 
           SVN_ERR(create_repos_id(&copyfrom_id, repos_root_url, repos_uuid,
                                   dst_wcroot->sdb, scratch_pool));