aboutsummaryrefslogtreecommitdiff
path: root/src/common/fs/file.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-16 14:03:01 -0400
committerGitHub <noreply@github.com>2021-06-16 14:03:01 -0400
commit92942fe01bf290d247e1a51562a07fe280448b47 (patch)
tree0868b1e5d5ae17a77dc18f678eb454b3e8f16c2b /src/common/fs/file.cpp
parent78651b54760b4a33984db0e0ad421185606834f8 (diff)
parent74790e4f33b5d287859ae91df984753eaa84aa28 (diff)
Merge pull request #6460 from Morph1984/fs-access-log-fix
fsp_srv: Fix filesystem access logging
Diffstat (limited to 'src/common/fs/file.cpp')
-rw-r--r--src/common/fs/file.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/fs/file.cpp b/src/common/fs/file.cpp
index c84f31f3e1..710e88b394 100644
--- a/src/common/fs/file.cpp
+++ b/src/common/fs/file.cpp
@@ -183,10 +183,6 @@ size_t WriteStringToFile(const std::filesystem::path& path, FileType type,
size_t AppendStringToFile(const std::filesystem::path& path, FileType type,
std::string_view string) {
- if (!Exists(path)) {
- return WriteStringToFile(path, type, string);
- }
-
if (!IsFile(path)) {
return 0;
}