From 653cc04be4806a1eb4e7d1b72a4696fc20a22e47 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 9 Sep 2021 14:18:45 +0200 Subject: Use binary file mode for compressed content --- bbot/worker/worker.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bbot/worker') 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); -- cgit v1.1