Fix open append mode for file_posix

This commit is contained in:
Richard Hodges
2021-12-10 17:06:38 +01:00
parent cf29ecdb63
commit 6bf9c882a4
2 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
* Fix open append mode for file_posix.
* Fix open append mode for file_win32.
* Add tests for file open in append mode.
* Fix file open with append/append_existing flag on Windows.

View File

@ -165,7 +165,7 @@ open(char const* path, file_mode mode, error_code& ec)
break;
case file_mode::append:
f = O_WRONLY | O_CREAT | O_TRUNC;
f = O_WRONLY | O_CREAT | O_APPEND;
#if BOOST_BEAST_USE_POSIX_FADVISE
advise = POSIX_FADV_SEQUENTIAL;
#endif