On the 'utf8-cmdline-prototype' branch: Recover argument name to minimise
difference with 'trunk'.
* subversion/include/svn_opt.h
* subversion/libsvn_subr/deprecated.c
(svn_opt_parse_revprop): revprop_table_p → revprops.
git-svn-id: https://svn.apache.org/repos/asf/subversion/branches/utf8-cmdline-prototype@1926787 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/subversion/include/svn_opt.h b/subversion/include/svn_opt.h
index 6e8761a..b2af4d5 100644
--- a/subversion/include/svn_opt.h
+++ b/subversion/include/svn_opt.h
@@ -718,7 +718,7 @@
*/
SVN_DEPRECATED
svn_error_t *
-svn_opt_parse_revprop(apr_hash_t **revprop_table_p,
+svn_opt_parse_revprop(apr_hash_t **revprops,
const char *revprop_spec,
apr_pool_t *pool);
diff --git a/subversion/libsvn_subr/deprecated.c b/subversion/libsvn_subr/deprecated.c
index 4fcb2b0..be237a2 100644
--- a/subversion/libsvn_subr/deprecated.c
+++ b/subversion/libsvn_subr/deprecated.c
@@ -1105,7 +1105,7 @@
}
svn_error_t *
-svn_opt_parse_revprop(apr_hash_t **revprop_table_p,
+svn_opt_parse_revprop(apr_hash_t **revprops,
const char *revprop_spec,
apr_pool_t *pool)
{
@@ -1113,7 +1113,7 @@
SVN_ERR(svn_utf_cstring_to_utf8(&revprop_spec_utf8, revprop_spec, pool));
- return svn_error_trace(svn_opt_parse_revprop2(revprop_table_p,
+ return svn_error_trace(svn_opt_parse_revprop2(revprops,
revprop_spec_utf8, pool));
}