diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-09-12 17:30:15 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-09-12 17:30:15 +0000 |
commit | c8ad9b8375f5308bb46a124f096a80926ea42fba (patch) | |
tree | dd1553d0e8f897f423445c2d8a84276a1906c60d | |
parent | 2323664a37f9336380741399b4c731c22478c617 (diff) |
dropped DB_PRIVATE from dbenv.open
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@153 1a98c847-1fd6-4fd8-948a-caf3550aa51b
-rw-r--r-- | db.cpp | 1 | ||||
-rw-r--r-- | serialize.h | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -77,7 +77,6 @@ CDB::CDB(const char* pszFile, const char* pszMode) : pdb(NULL) DB_INIT_MPOOL | DB_INIT_TXN | DB_THREAD | - DB_PRIVATE | DB_RECOVER, S_IRUSR | S_IWUSR); if (ret > 0) diff --git a/serialize.h b/serialize.h index 712d6c5305..6c636e1b8b 100644 --- a/serialize.h +++ b/serialize.h @@ -23,7 +23,7 @@ class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; static const int VERSION = 312; -static const char* pszSubVer = ".3"; +static const char* pszSubVer = ".4"; |