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 2011/05/04 22:06:00 UTC

svn commit: r1099581 - /subversion/trunk/subversion/libsvn_wc/info.c

Author: hwright
Date: Wed May  4 20:06:00 2011
New Revision: 1099581

URL: http://svn.apache.org/viewvc?rev=1099581&view=rev
Log:
* subversion/libsvn_wc/info.c
  (build_info_for_entry): Directly use read_info() instead of a node function
    to fetch the changed info.

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=1099581&r1=1099580&r2=1099581&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/info.c (original)
+++ subversion/trunk/subversion/libsvn_wc/info.c Wed May  4 20:06:00 2011
@@ -95,11 +95,15 @@ build_info_for_entry(svn_info2_t **info,
 
   if (repos_relpath)
     {
-      SVN_ERR(svn_wc__node_get_changed_info(&tmpinfo->last_changed_rev,
-                                            &tmpinfo->last_changed_date,
-                                            &tmpinfo->last_changed_author,
-                                            wc_ctx, local_abspath,
-                                            result_pool, scratch_pool));
+      SVN_ERR(svn_wc__db_read_info(NULL, NULL, NULL, NULL, NULL, NULL,
+                                   &tmpinfo->last_changed_rev,
+                                   &tmpinfo->last_changed_date,
+                                   &tmpinfo->last_changed_author,
+                                   NULL, NULL, NULL, NULL, NULL, NULL,
+                                   NULL, NULL, NULL, NULL, NULL, NULL,
+                                   NULL, NULL, NULL, NULL, NULL, NULL,
+                                   wc_ctx->db, local_abspath, result_pool,
+                                   scratch_pool));
     }
   else
     tmpinfo->last_changed_rev = SVN_INVALID_REVNUM;