From 8d1f6ca7822930d7e1e94739886b6cd50340b7b4 Mon Sep 17 00:00:00 2001 From: Hallvard Furuseth Date: Wed, 27 May 2015 22:23:50 +0200 Subject: [PATCH] mdb_txn_renew(): Drop pointless diff from mdb.RE. Makes the code friendlier to "git cherry-pick". --- libraries/liblmdb/mdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c index 5423575598..78c2c35150 100644 --- a/libraries/liblmdb/mdb.c +++ b/libraries/liblmdb/mdb.c @@ -2586,7 +2586,7 @@ mdb_txn_renew0(MDB_txn *txn) int rc, new_notls = 0; if (txn->mt_flags & MDB_TXN_RDONLY) { - txn->mt_flags &= MDB_TXN_BEGIN_FLAGS; + txn->mt_flags = MDB_TXN_RDONLY; /* Setup db info */ txn->mt_numdbs = env->me_numdbs; txn->mt_dbxs = env->me_dbxs; /* mostly static anyway */ -- 2.39.5