summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-05-11 14:08:42 +0200
committerCarl Hetherington <cth@carlh.net>2021-05-11 14:08:42 +0200
commit60b80e1051c8c20ebce4b757d3fb67491dfdb79d (patch)
tree6f49904e4959a626277dbd67169f49092e5c1a55
parent1484f4e3642e3ddcb10515eb0f32b00370968da3 (diff)
Revert incorrect 'fixing' of path on Windows (#1992).
This "to" path is on the ext2 drive so should not have any Windows hacks applied to it.
-rw-r--r--src/lib/ext.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/ext.cc b/src/lib/ext.cc
index b7481e293..86821bfa1 100644
--- a/src/lib/ext.cc
+++ b/src/lib/ext.cc
@@ -221,7 +221,6 @@ copy (boost::filesystem::path from, boost::filesystem::path to, uint64_t& total_
{
LOG_DISK ("Copy %1 -> %2", from.string(), to.generic_string());
from = fix_long_path (from);
- to = fix_long_path (to);
using namespace boost::filesystem;