Author: hwright
Date: Tue May 3 20:03:13 2011
New Revision: 1099218
URL: http://svn.apache.org/viewvc?rev=1099218&view=rev
Log:
Use a couple more library-internal functions when fetching info.
* subversion/libsvn_wc/info.c
(build_info_for_entry): Use internal functions to get the schedule and wcroot.
Modified:
subversion/trunk/subversion/libsvn_wc/info.c
Modified: subversion/trunk/subversion/libsvn_wc/info.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/info.c?rev=1099218&r1=1099217&r2=1099218&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/info.c (original)
+++ subversion/trunk/subversion/libsvn_wc/info.c Tue May 3 20:03:13 2011
@@ -172,11 +172,12 @@ build_info_for_entry(svn_info2_t **info,
/* A default */
tmpinfo->size = SVN_INVALID_FILESIZE;
- SVN_ERR(svn_wc__node_get_schedule(&tmpinfo->wc_info->schedule, NULL,
- wc_ctx, local_abspath, scratch_pool));
+ SVN_ERR(svn_wc__internal_node_get_schedule(&tmpinfo->wc_info->schedule, NULL,
+ wc_ctx->db, local_abspath,
+ scratch_pool));
- SVN_ERR(svn_wc_get_wc_root(&tmpinfo->wc_info->wcroot_abspath, wc_ctx,
- local_abspath, result_pool, scratch_pool));
+ SVN_ERR(svn_wc__db_get_wcroot(&tmpinfo->wc_info->wcroot_abspath, wc_ctx->db,
+ local_abspath, result_pool, scratch_pool));
SVN_ERR(svn_wc__node_get_recorded_info(&tmpinfo->wc_info->working_size,
&tmpinfo->wc_info->text_time,