mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 16:03:34 +01:00
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:
parent
ec01fad129
commit
04e17903f6
17
ChangeLog
17
ChangeLog
@ -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
|
||||||
|
@ -137,7 +137,10 @@ namespace boost
|
|||||||
{
|
{
|
||||||
(void)version;
|
(void)version;
|
||||||
// version 20 (aka 20100613)
|
// version 20 (aka 20100613)
|
||||||
ar << make_nvp("version", cfg.subVersion);
|
if (cfg.subVersion == 0)
|
||||||
|
ar << make_nvp("version", V6SubVersion);
|
||||||
|
else
|
||||||
|
ar << make_nvp("version", cfg.subVersion);
|
||||||
|
|
||||||
ar << make_nvp("creator", cfg.creator);
|
ar << make_nvp("creator", cfg.creator);
|
||||||
ar << make_nvp("cipherAlg", cfg.cipherIface);
|
ar << make_nvp("cipherAlg", cfg.cipherIface);
|
||||||
|
Loading…
Reference in New Issue
Block a user