You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2014/03/28 01:01:10 UTC

svn commit: r1582555 - /subversion/branches/1.8.x-r1544597/subversion/libsvn_wc/wc_db.c

Author: philip
Date: Fri Mar 28 00:01:10 2014
New Revision: 1582555

URL: http://svn.apache.org/r1582555
Log:
On 1.8.x-r1544597 branch, followup to r1564587, correct function name.

* subversion/libsvn_wc/wc_db.c
  (db_read_props): Add forward declaration.
  (read_single_info): Call db_read_props not db_read_props_internal.

Modified:
    subversion/branches/1.8.x-r1544597/subversion/libsvn_wc/wc_db.c

Modified: subversion/branches/1.8.x-r1544597/subversion/libsvn_wc/wc_db.c
URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x-r1544597/subversion/libsvn_wc/wc_db.c?rev=1582555&r1=1582554&r2=1582555&view=diff
==============================================================================
--- subversion/branches/1.8.x-r1544597/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/branches/1.8.x-r1544597/subversion/libsvn_wc/wc_db.c Fri Mar 28 00:01:10 2014
@@ -8836,6 +8836,13 @@ svn_wc__db_read_children_info(apr_hash_t
 }
 
 static svn_error_t *
+db_read_props(apr_hash_t **props,
+              svn_wc__db_wcroot_t *wcroot,
+              const char *local_relpath,
+              apr_pool_t *result_pool,
+              apr_pool_t *scratch_pool);
+
+static svn_error_t *
 read_single_info(const struct svn_wc__db_info_t **info,
                  svn_wc__db_wcroot_t *wcroot,
                  const char *local_relpath,
@@ -8950,9 +8957,9 @@ read_single_info(const struct svn_wc__db
       apr_hash_t *properties;
 
       if (mtb->props_mod)
-        SVN_ERR(db_read_props_internal(&properties,
-                                       wcroot, local_relpath,
-                                       scratch_pool, scratch_pool));
+        SVN_ERR(db_read_props(&properties,
+                              wcroot, local_relpath,
+                              scratch_pool, scratch_pool));
       else
         SVN_ERR(db_read_pristine_props(&properties, wcroot, local_relpath,
                                        TRUE /* deleted_ok */,