aboutsummaryrefslogtreecommitdiffstats
path: root/vcs-svn/repo_tree.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-26 22:55:05 -0700
committerJunio C Hamano <gitster@pobox.com>2017-08-26 22:55:05 -0700
commit4c3be636af97e95358a5535448c1087e5cc0796e (patch)
tree7466f61150a634edefbfef85ac92bd960ca8284d /vcs-svn/repo_tree.c
parentMerge branch 'tb/apply-with-crlf' (diff)
parentvcs-svn: rename repo functions to "svn_repo" (diff)
downloadgit-4c3be636af97e95358a5535448c1087e5cc0796e.tar.gz
git-4c3be636af97e95358a5535448c1087e5cc0796e.zip
Merge branch 'bc/vcs-svn-cleanup'
Code clean-up. * bc/vcs-svn-cleanup: vcs-svn: rename repo functions to "svn_repo" vcs-svn: remove unused prototypes
Diffstat (limited to 'vcs-svn/repo_tree.c')
-rw-r--r--vcs-svn/repo_tree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcs-svn/repo_tree.c b/vcs-svn/repo_tree.c
index 67d27f0b6c..d77cb0ada7 100644
--- a/vcs-svn/repo_tree.c
+++ b/vcs-svn/repo_tree.c
@@ -8,7 +8,7 @@
#include "repo_tree.h"
#include "fast_export.h"
-const char *repo_read_path(const char *path, uint32_t *mode_out)
+const char *svn_repo_read_path(const char *path, uint32_t *mode_out)
{
int err;
static struct strbuf buf = STRBUF_INIT;
@@ -25,7 +25,7 @@ const char *repo_read_path(const char *path, uint32_t *mode_out)
return buf.buf;
}
-void repo_copy(uint32_t revision, const char *src, const char *dst)
+void svn_repo_copy(uint32_t revision, const char *src, const char *dst)
{
int err;
uint32_t mode;
@@ -42,7 +42,7 @@ void repo_copy(uint32_t revision, const char *src, const char *dst)
fast_export_modify(dst, mode, data.buf);
}
-void repo_delete(const char *path)
+void svn_repo_delete(const char *path)
{
fast_export_delete(path);
}