summaryrefslogtreecommitdiff
path: root/src/lib/file_log.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-10-06 02:37:16 +0200
committerCarl Hetherington <cth@carlh.net>2023-10-09 23:38:28 +0200
commit96f50dd5e600925488fdd9db1580aa01b026269b (patch)
treeea8b837a596eb99a7416bfdbfd2d7e4f38603a7b /src/lib/file_log.cc
parent94a9473993b027b9368077009decbdd4322f90e3 (diff)
Use dcp::filesystem to wrap filesystem calls and fix_long_path
anything that is passed to read_file() from libcxml. This should fix #2623 and other similar problems.
Diffstat (limited to 'src/lib/file_log.cc')
-rw-r--r--src/lib/file_log.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/file_log.cc b/src/lib/file_log.cc
index adb06b7f0..5265e2a9d 100644
--- a/src/lib/file_log.cc
+++ b/src/lib/file_log.cc
@@ -23,6 +23,7 @@
#include "cross.h"
#include "config.h"
#include <dcp/file.h>
+#include <dcp/filesystem.h>
#include <cstdio>
#include <iostream>
#include <cerrno>
@@ -70,7 +71,7 @@ FileLog::head_and_tail (int amount) const
uintmax_t head_amount = amount;
uintmax_t tail_amount = amount;
boost::system::error_code ec;
- uintmax_t size = boost::filesystem::file_size (_file, ec);
+ uintmax_t size = dcp::filesystem::file_size(_file, ec);
if (size == static_cast<uintmax_t>(-1)) {
return "";
}