summaryrefslogtreecommitdiff
path: root/vcs-svn/fast_export.h
diff options
context:
space:
mode:
authorDavid Barr <david.barr@cordelta.com>2011-03-22 22:52:17 (GMT)
committerJonathan Nieder <jrnieder@gmail.com>2011-03-22 23:01:48 (GMT)
commit7c5817d3ba111bb71a5d7e3c8526e0925f96c92d (patch)
tree27d8e622674ca0e7530cf3cf8dc17b75bb6c9c79 /vcs-svn/fast_export.h
parentdce33c9c18e2987da1fe8ade67d27057bcb80a67 (diff)
downloadgit-7c5817d3ba111bb71a5d7e3c8526e0925f96c92d.zip
git-7c5817d3ba111bb71a5d7e3c8526e0925f96c92d.tar.gz
git-7c5817d3ba111bb71a5d7e3c8526e0925f96c92d.tar.bz2
vcs-svn: use strbuf for author, UUID, and URL
Use strbufs and strings instead of interned strings for values of rev, dump, and node fields that happen to be strings. After this change, the only remaining string_pool use is for paths in the repo_tree API and internals. Functional change: treat an empty author, UUID, or URL as none at all. So for example, in repos where the first revision has an empty svn:author property, the first rev will be treated as by "nobody" rather than by a person with empty name and email address created by prepending an @ sign to the repository UUID. Signed-off-by: David Barr <david.barr@cordelta.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Diffstat (limited to 'vcs-svn/fast_export.h')
-rw-r--r--vcs-svn/fast_export.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/vcs-svn/fast_export.h b/vcs-svn/fast_export.h
index 054e7d5..05cf97f 100644
--- a/vcs-svn/fast_export.h
+++ b/vcs-svn/fast_export.h
@@ -6,8 +6,9 @@
void fast_export_delete(uint32_t depth, uint32_t *path);
void fast_export_modify(uint32_t depth, uint32_t *path, uint32_t mode,
uint32_t mark);
-void fast_export_commit(uint32_t revision, uint32_t author, char *log,
- uint32_t uuid, uint32_t url, unsigned long timestamp);
+void fast_export_commit(uint32_t revision, const char *author, char *log,
+ const char *uuid, const char *url,
+ unsigned long timestamp);
void fast_export_blob(uint32_t mode, uint32_t mark, uint32_t len,
struct line_buffer *input);