From: Carl Hetherington Date: Tue, 11 May 2021 12:08:42 +0000 (+0200) Subject: Revert incorrect 'fixing' of path on Windows (#1992). X-Git-Tag: v2.15.147~1 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=60b80e1051c8c20ebce4b757d3fb67491dfdb79d 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. --- 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;