summaryrefslogtreecommitdiff
path: root/vcs-svn/repo_tree.h
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2011-03-22 18:19:46 -0500
committerJonathan Nieder <jrnieder@gmail.com>2011-03-22 18:19:46 -0500
commitfa6c4bceabdb7bc4bf8946c4887f08e9765f5ff6 (patch)
tree032e619da9cece255ca86279fb18ccb87fd83371 /vcs-svn/repo_tree.h
parent5c674860eb8bfa1a8c0038fc2d32c4fc205e9d62 (diff)
parent7c5817d3ba111bb71a5d7e3c8526e0925f96c92d (diff)
downloadgit-fa6c4bceabdb7bc4bf8946c4887f08e9765f5ff6.tar.gz
Merge branch 'db/strbufs-for-metadata' into db/svn-fe-code-purge
* db/strbufs-for-metadata: vcs-svn: use strbuf for author, UUID, and URL vcs-svn: use strbuf for revision log Conflicts: vcs-svn/fast_export.c vcs-svn/fast_export.h vcs-svn/repo_tree.c vcs-svn/svndump.c
Diffstat (limited to 'vcs-svn/repo_tree.h')
-rw-r--r--vcs-svn/repo_tree.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/vcs-svn/repo_tree.h b/vcs-svn/repo_tree.h
index d690784fbb..29887f9765 100644
--- a/vcs-svn/repo_tree.h
+++ b/vcs-svn/repo_tree.h
@@ -17,8 +17,9 @@ void repo_add(uint32_t *path, uint32_t mode, uint32_t blob_mark);
const char *repo_read_path(const uint32_t *path);
uint32_t repo_read_mode(const uint32_t *path);
void repo_delete(uint32_t *path);
-void repo_commit(uint32_t revision, uint32_t author, char *log, uint32_t uuid,
- uint32_t url, long unsigned timestamp);
+void repo_commit(uint32_t revision, const char *author,
+ char *log, const char *uuid, const char *url,
+ long unsigned timestamp);
void repo_diff(uint32_t r1, uint32_t r2);
void repo_init(void);
void repo_reset(void);