dropped DB_PRIVATE from dbenv.open
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@153 1a98c847-1fd6-4fd8-948a-caf3550aa51b
This commit is contained in:
parent
c39b06866e
commit
fdbf76d4f4
2 changed files with 1 additions and 2 deletions
1
db.cpp
1
db.cpp
|
@ -77,7 +77,6 @@ CDB::CDB(const char* pszFile, const char* pszMode) : pdb(NULL)
|
||||||
DB_INIT_MPOOL |
|
DB_INIT_MPOOL |
|
||||||
DB_INIT_TXN |
|
DB_INIT_TXN |
|
||||||
DB_THREAD |
|
DB_THREAD |
|
||||||
DB_PRIVATE |
|
|
||||||
DB_RECOVER,
|
DB_RECOVER,
|
||||||
S_IRUSR | S_IWUSR);
|
S_IRUSR | S_IWUSR);
|
||||||
if (ret > 0)
|
if (ret > 0)
|
||||||
|
|
|
@ -23,7 +23,7 @@ class CAutoFile;
|
||||||
static const unsigned int MAX_SIZE = 0x02000000;
|
static const unsigned int MAX_SIZE = 0x02000000;
|
||||||
|
|
||||||
static const int VERSION = 312;
|
static const int VERSION = 312;
|
||||||
static const char* pszSubVer = ".3";
|
static const char* pszSubVer = ".4";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue