diff options
author | Mark Spruiell <mes@zeroc.com> | 2010-05-29 15:55:35 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2010-05-29 15:55:35 -0700 |
commit | ecc14a6ff2342c06283c9ee49c1437f7abd10f1e (patch) | |
tree | 839410d735dba458787a038f6702919e08bbe115 /cpp/src/FreezeScript/Util.cpp | |
parent | bug fix in slice2html (diff) | |
download | ice-ecc14a6ff2342c06283c9ee49c1437f7abd10f1e.tar.bz2 ice-ecc14a6ff2342c06283c9ee49c1437f7abd10f1e.tar.xz ice-ecc14a6ff2342c06283c9ee49c1437f7abd10f1e.zip |
another FreezeScript fix
Diffstat (limited to 'cpp/src/FreezeScript/Util.cpp')
-rw-r--r-- | cpp/src/FreezeScript/Util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/FreezeScript/Util.cpp b/cpp/src/FreezeScript/Util.cpp index 49cebea2b56..2fa873573e0 100644 --- a/cpp/src/FreezeScript/Util.cpp +++ b/cpp/src/FreezeScript/Util.cpp @@ -223,7 +223,7 @@ FreezeScript::readCatalog(const Ice::CommunicatorPtr& communicator, const string // Open the database environment. // { - u_int32_t flags = DB_THREAD; + u_int32_t flags = DB_THREAD | DB_CREATE | DB_INIT_TXN | DB_INIT_MPOOL; dbEnv.open(dbEnvName.c_str(), flags, 0); } |