diff options
| author | Jonathan Nieder <jrnieder@gmail.com> | 2017-08-22 17:02:15 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-08-23 10:41:25 -0700 |
| commit | 9b0db33506ea9b1d968d719f2fce9c208c66cd95 (patch) | |
| tree | 0dc887e436bd0cb4fc150188917f8abdfb766f87 /vcs-svn/svndump.c | |
| parent | 21c7c2d92d4b107ca854d84d4cd4d86c7993089c (diff) | |
| download | git-9b0db33506ea9b1d968d719f2fce9c208c66cd95.tar.gz | |
vcs-svn: remove repo_delete wrapper function
Since v1.7.10-rc0~118^2~4^2~4^2~3 (vcs-svn: pass paths through to
fast-import, 2010-12-13) this is an alias for fast_export_delete.
Remove the unnecessary layer of indirection.
No functional change intended.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'vcs-svn/svndump.c')
| -rw-r--r-- | vcs-svn/svndump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcs-svn/svndump.c b/vcs-svn/svndump.c index c0fa4eb723..41113119bd 100644 --- a/vcs-svn/svndump.c +++ b/vcs-svn/svndump.c @@ -225,11 +225,11 @@ static void handle_node(void) if (have_text || have_props || node_ctx.srcRev) die("invalid dump: deletion node has " "copyfrom info, text, or properties"); - svn_repo_delete(node_ctx.dst.buf); + fast_export_delete(node_ctx.dst.buf); return; } if (node_ctx.action == NODEACT_REPLACE) { - svn_repo_delete(node_ctx.dst.buf); + fast_export_delete(node_ctx.dst.buf); node_ctx.action = NODEACT_ADD; } if (node_ctx.srcRev) { |
