diff options
author | crupest <crupest@outlook.com> | 2022-05-10 11:08:05 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-10 11:08:05 +0800 |
commit | f25e220614b0d3a7db45f4b6e6c3dda686b9f66b (patch) | |
tree | 0512a779291b7d77db093b612c3f3151f2c0a390 | |
parent | 58e37eee64b13df9cf24cdfc97906e19b2898869 (diff) | |
download | cru-f25e220614b0d3a7db45f4b6e6c3dda686b9f66b.tar.gz cru-f25e220614b0d3a7db45f4b6e6c3dda686b9f66b.tar.bz2 cru-f25e220614b0d3a7db45f4b6e6c3dda686b9f66b.zip |
...
-rw-r--r-- | src/common/platform/unix/UnixFileStream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/platform/unix/UnixFileStream.cpp b/src/common/platform/unix/UnixFileStream.cpp index cf268288..7a44b92a 100644 --- a/src/common/platform/unix/UnixFileStream.cpp +++ b/src/common/platform/unix/UnixFileStream.cpp @@ -35,8 +35,8 @@ int MapOpenFileFlag(OpenFileFlag flags) { result |= O_CREAT; } - if (flags & OpenFileFlags::ThrowOnExist) { - result |= O_EXCL; + if (flags & OpenFileFlags::Truncate) { + result |= O_TRUNC; } return result; |