summaryrefslogtreecommitdiff
path: root/subversion/libsvn_wc/translate.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2018-05-08 03:44:38 +0000
committerPeter Wemm <peter@FreeBSD.org>2018-05-08 03:44:38 +0000
commit3faf8d6bffc5d0fb2525ba37bb504c53366caf9d (patch)
tree7e47911263e75034b767fe34b2f8d3d17e91f66d /subversion/libsvn_wc/translate.c
parenta55fb3c0d5eca7d887798125d5b95942b1f01d4b (diff)
Diffstat (limited to 'subversion/libsvn_wc/translate.c')
-rw-r--r--subversion/libsvn_wc/translate.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/subversion/libsvn_wc/translate.c b/subversion/libsvn_wc/translate.c
index 0e16235d7827a..bc5db887e24dc 100644
--- a/subversion/libsvn_wc/translate.c
+++ b/subversion/libsvn_wc/translate.c
@@ -440,3 +440,20 @@ svn_wc__sync_flags_with_props(svn_boolean_t *did_set,
return SVN_NO_ERROR;
}
+
+svn_error_t *
+svn_wc__translated_stream(svn_stream_t **stream,
+ svn_wc_context_t *wc_ctx,
+ const char *local_abspath,
+ const char *versioned_abspath,
+ apr_uint32_t flags,
+ apr_pool_t *result_pool,
+ apr_pool_t *scratch_pool)
+{
+ return svn_error_trace(
+ svn_wc__internal_translated_stream(stream, wc_ctx->db,
+ local_abspath,
+ versioned_abspath,
+ flags, result_pool,
+ scratch_pool));
+}