diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-03-26 11:35:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-26 11:35:41 -0700 |
commit | a080fdd1b15612f71e5cc660c108f7d6c03804dd (patch) | |
tree | a798d46c93c1df8d9197537a236f85f5be57c09f /vcs-svn/repo_tree.c | |
parent | 42f98745732c68baa6d79a50eab0d726b549025d (diff) | |
parent | 195b7ca6f229455da61f9f6b6e56a6558fb0e8ee (diff) | |
download | git-a080fdd1b15612f71e5cc660c108f7d6c03804dd.tar.gz |
Merge branch 'svn-fe' of git://repo.or.cz/git/jrn
* 'svn-fe' of git://repo.or.cz/git/jrn:
vcs-svn: handle log message with embedded NUL
vcs-svn: avoid unnecessary copying of log message and author
vcs-svn: remove buffer_read_string
vcs-svn: make reading of properties binary-safe
Diffstat (limited to 'vcs-svn/repo_tree.c')
-rw-r--r-- | vcs-svn/repo_tree.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vcs-svn/repo_tree.c b/vcs-svn/repo_tree.c index 632dbd8736..a21d89de97 100644 --- a/vcs-svn/repo_tree.c +++ b/vcs-svn/repo_tree.c @@ -278,8 +278,9 @@ void repo_diff(uint32_t r1, uint32_t r2) repo_commit_root_dir(commit_pointer(r2))); } -void repo_commit(uint32_t revision, const char *author, char *log, - const char *uuid, const char *url, unsigned long timestamp) +void repo_commit(uint32_t revision, const char *author, + const struct strbuf *log, const char *uuid, const char *url, + unsigned long timestamp) { fast_export_commit(revision, author, log, uuid, url, timestamp); dent_commit(); |