diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:03:08 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-10 17:03:08 +0900 |
commit | 044aa0eb7fa44f0f2d44c3331d6218e087b45fc2 (patch) | |
tree | 11d4a0801d6346361af781c7e0333fd9ece02cd5 /vcs-svn/repo_tree.c | |
parent | 5e03ae4594358b3ab71cf98f18b4ccb18af99e6d (diff) | |
parent | 15d1d0951e60903263f90af912738ad60ac43bb5 (diff) |
Merge branch 'bc/vcs-svn-cleanup' into maint
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.c | 6 |
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); } |