diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 14:18:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 14:18:45 +0200 |
commit | 653cc04be4806a1eb4e7d1b72a4696fc20a22e47 (patch) | |
tree | 18958d73dac7f755b78628f96e2117565895daec /bbot/worker/worker.cxx | |
parent | 99221a546b10545a7ed7af53044b088217e150eb (diff) |
Use binary file mode for compressed content
Diffstat (limited to 'bbot/worker/worker.cxx')
-rw-r--r-- | bbot/worker/worker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index eb7f50b..c1530f8 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -585,7 +585,7 @@ upload_manifest (tracer& trace, try { tmp = auto_rmfile (path::temp_path (what + "-manifest.lz4")); - ofdstream ofs (tmp.path); + ofdstream ofs (tmp.path, fdopen_mode::binary); olz4stream ozs (ofs, 9, 5 /* 256KB */, nullopt /* content_size */); manifest_serializer s (ozs, tmp.path.string ()); m.serialize (s); |