aboutsummaryrefslogtreecommitdiff
path: root/vcs-svn
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-03-30 10:49:13 -0700
committerJunio C Hamano <gitster@pobox.com>2011-03-30 10:49:13 -0700
commit44a9cedb005b0b8be31dccd8e6ddf97074a01345 (patch)
treec32849c1c9c498cc7d2ab4072c4dfbbcee0e97c9 /vcs-svn
parent537d99033749591245ddd36f7317fd6b8555d803 (diff)
parenta892a2ddfefca2e25d595bb685c8853d023fde0a (diff)
downloadgit-44a9cedb005b0b8be31dccd8e6ddf97074a01345.tar.gz
git-44a9cedb005b0b8be31dccd8e6ddf97074a01345.tar.xz
Merge branch 'svn-fe' of git://repo.or.cz/git/jrn
* 'svn-fe' of git://repo.or.cz/git/jrn: tests: kill backgrounded processes more robustly vcs-svn: a void function shouldn't try to return something tests: make sure input to sed is newline terminated vcs-svn: add missing cast to printf argument
Diffstat (limited to 'vcs-svn')
-rw-r--r--vcs-svn/svndump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcs-svn/svndump.c b/vcs-svn/svndump.c
index eef49ca19..572a99596 100644
--- a/vcs-svn/svndump.c
+++ b/vcs-svn/svndump.c
@@ -214,7 +214,8 @@ static void handle_node(void)
if (have_text || have_props || node_ctx.srcRev)
die("invalid dump: deletion node has "
"copyfrom info, text, or properties");
- return repo_delete(node_ctx.dst);
+ repo_delete(node_ctx.dst);
+ return;
}
if (node_ctx.action == NODEACT_REPLACE) {
repo_delete(node_ctx.dst);