diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-11-26 15:01:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-26 15:01:43 +0100 |
commit | 2458270b69b28d17c5a89f7b006e4df550435477 (patch) | |
tree | da9786a10336d3dac0cd910712c6b7e88118ca1f | |
parent | 8252a44e96619b6df0901a1f62e60b3d5951fd12 (diff) | |
parent | 1fd13d67e85b8365baed1cfb435870e24a7e6979 (diff) |
Merge pull request #4094 from martinetd/btrfs
preallocateContents option: disable by default
-rw-r--r-- | src/libutil/archive.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/archive.cc b/src/libutil/archive.cc index f1479329f..03534abc4 100644 --- a/src/libutil/archive.cc +++ b/src/libutil/archive.cc @@ -27,7 +27,7 @@ struct ArchiveSettings : Config #endif "use-case-hack", "Whether to enable a Darwin-specific hack for dealing with file name collisions."}; - Setting<bool> preallocateContents{this, true, "preallocate-contents", + Setting<bool> preallocateContents{this, false, "preallocate-contents", "Whether to preallocate files when writing objects with known size."}; }; |