summaryrefslogtreecommitdiff
path: root/src/lib/config.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-25 02:13:49 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-25 02:13:49 +0200
commit36e8f32c7bdb8b257e22977d8fac86536368d7b8 (patch)
treea7ae9eda1e147be382899083bed0e348a3bcff8a /src/lib/config.cc
parentdb6882af015dc067baed605b11d8dfa3c3dcb7e3 (diff)
parent3ed79bd632560efcc3a0f3992eeb9868b315be58 (diff)
Merge remote-tracking branch 'origin/main' into v2.17.x
Diffstat (limited to 'src/lib/config.cc')
-rw-r--r--src/lib/config.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/config.cc b/src/lib/config.cc
index b30006498..cd285abd1 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -1513,7 +1513,7 @@ void
Config::copy_and_link (boost::filesystem::path new_file) const
{
write ();
- dcp::filesystem::copy_file(config_read_file(), new_file, boost::filesystem::copy_option::overwrite_if_exists);
+ dcp::filesystem::copy_file(config_read_file(), new_file, dcp::filesystem::CopyOptions::OVERWRITE_EXISTING);
link (new_file);
}