From 15d1d0951e60903263f90af912738ad60ac43bb5 Mon Sep 17 00:00:00 2001 From: "brian m. carlson" Date: Mon, 21 Aug 2017 00:00:18 +0000 Subject: vcs-svn: rename repo functions to "svn_repo" There were several functions in the Subversion code that started with "repo_". This namespace is also used by the Git struct repository code. Rename these functions to start with "svn_repo" to avoid any future conflicts. Signed-off-by: brian m. carlson Signed-off-by: Junio C Hamano --- vcs-svn/repo_tree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vcs-svn/repo_tree.c') 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); } -- cgit v1.2.3