aboutsummaryrefslogtreecommitdiff
path: root/bbot/utility.txx
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/utility.txx')
-rw-r--r--bbot/utility.txx9
1 files changed, 5 insertions, 4 deletions
diff --git a/bbot/utility.txx b/bbot/utility.txx
index 398c78d..d2aad10 100644
--- a/bbot/utility.txx
+++ b/bbot/utility.txx
@@ -208,7 +208,7 @@ namespace bbot
template <typename T>
void
- serialize_manifest (const T& m, const path& f, const char* what)
+ serialize_manifest (const T& m, const path& f, const char* what, bool ll)
{
using namespace std;
using namespace butl;
@@ -218,7 +218,7 @@ namespace bbot
ofdstream ofs (f, fdopen_mode::binary);
auto_rmfile arm (f); // Try to remove on failure ignoring errors.
- serialize_manifest (m, ofs, f.string (), what, true);
+ serialize_manifest (m, ofs, f.string (), what, true, ll);
ofs.close ();
arm.cancel ();
@@ -235,13 +235,14 @@ namespace bbot
ostream& os,
const string& name,
const char* what,
- bool fh)
+ bool fh,
+ bool ll)
{
using namespace butl;
try
{
- manifest_serializer s (os, name);
+ manifest_serializer s (os, name, ll);
m.serialize (s);
return;
}