From 8837eb61835b076a0068deb20c16fbe5851f1691 Mon Sep 17 00:00:00 2001 From: Valient Gough Date: Wed, 10 Sep 2008 05:53:44 +0000 Subject: [PATCH] work around problem with RLog section grouping git-svn-id: http://encfs.googlecode.com/svn/trunk@42 db9cf616-1c43-0410-9cb8-a902689de0d6 --- ChangeLog | 22 ++++++++++++++++++++++ encfs/FileUtils.cpp | 4 ++++ 2 files changed, 26 insertions(+) diff --git a/ChangeLog b/ChangeLog index 95b35d6..7a19750 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,27 @@ +Tue Sep 9 2008 Valient Gough + * work around problem with RLog section inlining + +Mon Aug 25 2008 Valient Gough + * fix potential null pointer exception in opendir handler, + affects MacOS systems but not Linux. + +Sat Aug 23 2008 Valient Gough + * bump library version + * add BOOST_SYSTEM check + +Fri Aug 22 2008 Valient Gough + * replace raw pointers with vector in EncFSConfig + +Sun Aug 17 2008 Valient Gough + * bump version to 1.5 + * minor improvement to showFSInfo output + * make KDF function run longer in paranoia mode + Sat Aug 16 2008 Valient Gough + * enable file hole support by default + * allow for automatic upgrade to PBKDF2 when changing passwords + * reset salt and iteration count when creating new password * use PBKDF2 for new keys with salt and variable iteration count. When creating a new key, adjusts iteration count to take approximatly 1/2 a second of CPU time to test key. diff --git a/encfs/FileUtils.cpp b/encfs/FileUtils.cpp index 14384d7..73a589f 100644 --- a/encfs/FileUtils.cpp +++ b/encfs/FileUtils.cpp @@ -63,6 +63,10 @@ #include #include +// disable rlog section grouping for this file.. seems to cause problems +#undef RLOG_SECTION +#define RLOG_SECTION + using namespace rel; using namespace rlog; using namespace std;