fix test code, update changelogs

git-svn-id: http://encfs.googlecode.com/svn/trunk@57 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
Valient Gough 2010-06-15 06:41:27 +00:00
parent ec01fad129
commit 04e17903f6
2 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,20 @@
Mon Jun 14 2010 Valient Gough <vgough@pobox.com>
* fix compile error for boost < 1.41 and change rWarning to rInfo
* fix compiler warnings about unused result from fgets
* add boost 1.42+ support
* incorporate patch from Arch linux, bump version
* add support for version field within serialized config
Sat Nov 28 2009 Valient Gough <vgough@pobox.com>
* more tests
* add more tests and makefile target, test standard and paranoia mode
* fix tests on Linux
* add softlink tests
Fri Nov 27 2009 Valient Gough <vgough@pobox.com>
* add beginning of automated test script
* add options to help automate filesystem creation
* fix install instructions, issue 47
Thu Nov 26 2009 Valient Gough <vgough@pobox.com> Thu Nov 26 2009 Valient Gough <vgough@pobox.com>
* add extpass option and multi-argument support to encode and decode * add extpass option and multi-argument support to encode and decode

View File

@ -137,6 +137,9 @@ namespace boost
{ {
(void)version; (void)version;
// version 20 (aka 20100613) // version 20 (aka 20100613)
if (cfg.subVersion == 0)
ar << make_nvp("version", V6SubVersion);
else
ar << make_nvp("version", cfg.subVersion); ar << make_nvp("version", cfg.subVersion);
ar << make_nvp("creator", cfg.creator); ar << make_nvp("creator", cfg.creator);