summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2010-05-29 15:55:35 -0700
committerMark Spruiell <mes@zeroc.com>2010-05-29 15:55:35 -0700
commitecc14a6ff2342c06283c9ee49c1437f7abd10f1e (patch)
tree839410d735dba458787a038f6702919e08bbe115 /cpp/src
parentbug fix in slice2html (diff)
downloadice-ecc14a6ff2342c06283c9ee49c1437f7abd10f1e.tar.bz2
ice-ecc14a6ff2342c06283c9ee49c1437f7abd10f1e.tar.xz
ice-ecc14a6ff2342c06283c9ee49c1437f7abd10f1e.zip
another FreezeScript fix
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/FreezeScript/Util.cpp2
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);
}