diff options
author | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
commit | 3faf8d6bffc5d0fb2525ba37bb504c53366caf9d (patch) | |
tree | 7e47911263e75034b767fe34b2f8d3d17e91f66d /subversion/libsvn_wc/node.c | |
parent | a55fb3c0d5eca7d887798125d5b95942b1f01d4b (diff) |
Diffstat (limited to 'subversion/libsvn_wc/node.c')
-rw-r--r-- | subversion/libsvn_wc/node.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/subversion/libsvn_wc/node.c b/subversion/libsvn_wc/node.c index 560a899ea0436..5864776372745 100644 --- a/subversion/libsvn_wc/node.c +++ b/subversion/libsvn_wc/node.c @@ -906,7 +906,8 @@ svn_wc__rename_wc(svn_wc_context_t *wc_ctx, { SVN_ERR(svn_wc__db_drop_root(wc_ctx->db, wcroot_abspath, scratch_pool)); - SVN_ERR(svn_io_file_rename(from_abspath, dst_abspath, scratch_pool)); + SVN_ERR(svn_io_file_rename2(from_abspath, dst_abspath, FALSE, + scratch_pool)); } else return svn_error_createf( |