summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-11-22 10:09:52 +0100
committerCarl Hetherington <cth@carlh.net>2023-11-22 10:09:52 +0100
commit8a71b3b000979dad22db706c9832ebbc3a7c53aa (patch)
treeb86fe12b820301ea10966c8b6c22d7a3774f74e5 /src/lib
parent38643ec631074ae628a4c414a1e7a3462aba19ed (diff)
Don't use fix_long_path on config filename.
Diffstat (limited to 'src/lib')
-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 aea54aa23..5b0a50ede 100644
--- a/src/lib/config.cc
+++ b/src/lib/config.cc
@@ -291,7 +291,7 @@ Config::read_config()
try
{
cxml::Document f ("Config");
- f.read_file(dcp::filesystem::fix_long_path(config_read_file()));
+ f.read_file(config_read_file());
auto version = f.optional_number_child<int> ("Version");
if (version && *version < _current_version) {