mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 23:29:34 -05:00
Fix MDB_NOSYNC,MDB_NOMETASYNC thinko
This commit is contained in:
parent
619ccdd3da
commit
2ee9c4a30e
1 changed files with 1 additions and 1 deletions
|
|
@ -3750,7 +3750,7 @@ mdb_env_write_meta(MDB_txn *txn)
|
|||
toggle, txn->mt_dbs[MAIN_DBI].md_root));
|
||||
|
||||
env = txn->mt_env;
|
||||
flags = txn->mt_flags & env->me_flags;
|
||||
flags = txn->mt_flags | env->me_flags;
|
||||
mp = env->me_metas[toggle];
|
||||
mapsize = env->me_metas[toggle ^ 1]->mm_mapsize;
|
||||
/* Persist any increases of mapsize config */
|
||||
|
|
|
|||
Loading…
Reference in a new issue