Author: julianfoad
Date: Wed Apr 4 08:16:53 2012
New Revision: 1309280
URL: http://svn.apache.org/viewvc?rev=1309280&view=rev
Log:
* subversion/libsvn_client/util.c
(svn_client__wc_node_get_origin): Call a slightly simpler subroutine.
Modified:
subversion/trunk/subversion/libsvn_client/util.c
Modified: subversion/trunk/subversion/libsvn_client/util.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/util.c?rev=1309280&r1=1309279&r2=1309280&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/util.c (original)
+++ subversion/trunk/subversion/libsvn_client/util.c Wed Apr 4 08:16:53 2012
@@ -232,9 +232,9 @@ svn_client__wc_node_get_origin(const cha
* URL and UUID anyway, and leave the node URL and revision as NULL
* and INVALID. If it's unversioned, this will throw an error. */
*url_p = NULL;
- SVN_ERR(svn_client_get_repos_root(&repos_root_url, repos_uuid_p,
- wc_abspath,
- ctx, result_pool, scratch_pool));
+ SVN_ERR(svn_wc__node_get_repos_info(&repos_root_url, repos_uuid_p,
+ ctx->wc_ctx, wc_abspath,
+ result_pool, scratch_pool));
}
if (repos_root_url_p)