From cb14ed128e6d47f7324dfcb69bba50e2d59f073c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 5 Oct 2010 18:24:01 -0400 Subject: [PATCH] Bug - Fixed bug whereby after a merge, the undo.data file had all lines concatenated without \n characters. --- src/TDB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TDB.cpp b/src/TDB.cpp index 76eaec080..5c6a3cdb9 100644 --- a/src/TDB.cpp +++ b/src/TDB.cpp @@ -1535,7 +1535,7 @@ void TDB::merge (const std::string& mergeFile) } // write undo file - if (! File::write (undoFile, undo, false)) + if (! File::write (undoFile, undo, true)) throw std::string ("Could not write '") + undoFile + "'."; } else // nothing to be done