Author: julianfoad
Date: Wed Jul 26 13:43:54 2017
New Revision: 1803047
URL: http://svn.apache.org/viewvc?rev=1803047&view=rev
Log:
On the 'shelve-checkpoint3' branch: s/svn_path_join_many/svn_dirent_join_many/.
Found by: Bert.
Modified:
subversion/branches/shelve-checkpoint3/subversion/libsvn_client/checkpoint3.c
Modified:
subversion/branches/shelve-checkpoint3/subversion/libsvn_client/checkpoint3.c
URL:
http://svn.apache.org/viewvc/subversion/branches/shelve-checkpoint3/subversion/libsvn_client/checkpoint3.c?rev=1803047&r1=1803046&r2=1803047&view=diff
==============================================================================
---
subversion/branches/shelve-checkpoint3/subversion/libsvn_client/checkpoint3.c
(original)
+++
subversion/branches/shelve-checkpoint3/subversion/libsvn_client/checkpoint3.c
Wed Jul 26 13:43:54 2017
@@ -62,9 +62,9 @@ static char *
checkpoints_repo_dir(const char *wc_root_abspath,
apr_pool_t *result_pool)
{
- return svn_path_join_many(result_pool,
- wc_root_abspath, ".svn", "checkpoints",
- SVN_VA_NULL);
+ return svn_dirent_join_many(result_pool,
+ wc_root_abspath, ".svn", "checkpoints",
+ SVN_VA_NULL);
}
/* ### temp: we should not be accessing the repo via URL but directly */
@@ -72,9 +72,9 @@ static const char *
checkpoints_repo_url(const char *wc_root_abspath,
apr_pool_t *result_pool)
{
- char *path = svn_path_join_many(result_pool,
- wc_root_abspath,".svn", "checkpoints",
- SVN_VA_NULL);
+ char *path = svn_dirent_join_many(result_pool,
+ wc_root_abspath,".svn", "checkpoints",
+ SVN_VA_NULL);
const char *url;
svn_error_clear(svn_uri_get_file_url_from_dirent(&url, path, result_pool));
@@ -86,8 +86,8 @@ static const char *
original_repos_url(const char *wc_root_abspath,
apr_pool_t *result_pool)
{
- char *path = svn_path_join_many(result_pool,
- wc_root_abspath, "..", "repo", SVN_VA_NULL);
+ char *path = svn_dirent_join_many(result_pool,
+ wc_root_abspath, "..", "repo",
SVN_VA_NULL);
const char *url;
svn_error_clear(svn_uri_get_file_url_from_dirent(&url, path, result_pool));