2011-05-16 18:07:44 +02:00
|
|
|
Always use DB_PRIVATE. Unfortunately no longer configurable
|
|
|
|
in the macros file.
|
2006-12-19 00:17:44 +01:00
|
|
|
|
2013-07-12 16:11:14 +02:00
|
|
|
--- ./lib/backend/db3.c.orig 2013-07-12 12:09:45.000000000 +0000
|
|
|
|
+++ ./lib/backend/db3.c 2013-07-12 12:11:07.000000000 +0000
|
|
|
|
@@ -164,7 +164,7 @@ static int db_init(rpmdb rdb, const char
|
|
|
|
int lockfd = -1;
|
2012-08-28 15:31:44 +02:00
|
|
|
struct dbConfig_s * cfg = &rdb->cfg;
|
2011-05-16 18:07:44 +02:00
|
|
|
/* This is our setup, thou shall not have other setups before us */
|
|
|
|
- uint32_t eflags = (DB_CREATE|DB_INIT_MPOOL|DB_INIT_CDB);
|
|
|
|
+ uint32_t eflags = (DB_CREATE|DB_INIT_MPOOL|DB_INIT_CDB|DB_PRIVATE);
|
2006-12-19 00:17:44 +01:00
|
|
|
|
2011-05-16 18:07:44 +02:00
|
|
|
if (rdb->db_dbenv != NULL) {
|
|
|
|
rdb->db_opens++;
|