diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-02-28 16:33:45 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-28 16:33:45 -0800 |
commit | f70f736bcbb22cfe434eaf20089d9713b991ee31 (patch) | |
tree | e8eb5e07210e2ff11539ba87d57e25ae0bde42e4 /contrib | |
parent | afb0b7933f31e984caf6fb835f6afe6eb37d918c (diff) | |
parent | 6288e3e180c0b911e6f7062f1e744a25568f7d22 (diff) | |
download | git-f70f736bcbb22cfe434eaf20089d9713b991ee31.tar.gz git-f70f736bcbb22cfe434eaf20089d9713b991ee31.tar.xz |
Merge branch 'svn-fe' of git://repo.or.cz/git/jrn
* 'svn-fe' of git://repo.or.cz/git/jrn: (31 commits)
fast-import: make code "-Wpointer-arith" clean
vcs-svn: teach line_buffer about temporary files
vcs-svn: allow input from file descriptor
vcs-svn: allow character-oriented input
vcs-svn: add binary-safe read function
t0081 (line-buffer): add buffering tests
vcs-svn: tweak test-line-buffer to not assume line-oriented input
tests: give vcs-svn/line_buffer its own test script
vcs-svn: make test-line-buffer input format more flexible
vcs-svn: teach line_buffer to handle multiple input files
vcs-svn: collect line_buffer data in a struct
vcs-svn: replace buffer_read_string memory pool with a strbuf
vcs-svn: eliminate global byte_buffer
fast-import: add 'ls' command
vcs-svn: Allow change nodes for root of tree (/)
vcs-svn: Implement Prop-delta handling
vcs-svn: Sharpen parsing of property lines
vcs-svn: Split off function for handling of individual properties
vcs-svn: Make source easier to read on small screens
vcs-svn: More dump format sanity checks
...
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/svn-fe/svn-fe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/svn-fe/svn-fe.c b/contrib/svn-fe/svn-fe.c index a2677b03e..35db24f5e 100644 --- a/contrib/svn-fe/svn-fe.c +++ b/contrib/svn-fe/svn-fe.c @@ -8,7 +8,8 @@ int main(int argc, char **argv) { - svndump_init(NULL); + if (svndump_init(NULL)) + return 1; svndump_read((argc > 1) ? argv[1] : NULL); svndump_deinit(); svndump_reset(); |