Skip to content

Commit

Permalink
fix test code, update changelogs
Browse files Browse the repository at this point in the history
git-svn-id: http://encfs.googlecode.com/svn/trunk@57 db9cf616-1c43-0410-9cb8-a902689de0d6
  • Loading branch information
vgough committed Jun 15, 2010
1 parent ec01fad commit 04e1790
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Mon Jun 14 2010 Valient Gough <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* add beginning of automated test script
* add options to help automate filesystem creation
* fix install instructions, issue 47

Thu Nov 26 2009 Valient Gough <[email protected]>
* add extpass option and multi-argument support to encode and decode
Expand Down
5 changes: 4 additions & 1 deletion encfs/FileUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ namespace boost
{
(void)version;
// 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("cipherAlg", cfg.cipherIface);
Expand Down

0 comments on commit 04e1790

Please sign in to comment.