diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-03-18 13:33:26 +0000 |
---|---|---|
committer | <> | 2015-07-08 14:41:01 +0000 |
commit | bb0ef45f7c46b0ae221b26265ef98a768c33f820 (patch) | |
tree | 98bae10dde41c746c51ae97ec4f879e330415aa7 /subversion/libsvn_client/revisions.c | |
parent | 239dfafe71711b2f4c43d7b90a1228d7bdc5195e (diff) | |
download | subversion-tarball-subversion-1.8.13.tar.gz |
Imported from /home/lorry/working-area/delta_subversion-tarball/subversion-1.8.13.tar.gz.subversion-1.8.13
Diffstat (limited to 'subversion/libsvn_client/revisions.c')
-rw-r--r-- | subversion/libsvn_client/revisions.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/subversion/libsvn_client/revisions.c b/subversion/libsvn_client/revisions.c index ff24dea..ec255c1 100644 --- a/subversion/libsvn_client/revisions.c +++ b/subversion/libsvn_client/revisions.c @@ -91,12 +91,12 @@ svn_client__get_revision_number(svn_revnum_t *revnum, if (svn_path_is_url(local_abspath)) goto invalid_rev_arg; - err = svn_wc__node_get_commit_base_rev(revnum, wc_ctx, - local_abspath, - scratch_pool); + err = svn_wc__node_get_origin(NULL, revnum, NULL, NULL, NULL, NULL, + wc_ctx, local_abspath, TRUE, + scratch_pool, scratch_pool); /* Return the same error as older code did (before and at r935091). - At least svn_client_proplist3 promises SVN_ERR_ENTRY_NOT_FOUND. */ + At least svn_client_proplist4 promises SVN_ERR_ENTRY_NOT_FOUND. */ if (err && err->apr_err == SVN_ERR_WC_PATH_NOT_FOUND) { svn_error_clear(err); |