summaryrefslogtreecommitdiffstats
path: root/xlators/storage/bdb/src
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/storage/bdb/src')
-rw-r--r--xlators/storage/bdb/src/bdb-ll.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/xlators/storage/bdb/src/bdb-ll.c b/xlators/storage/bdb/src/bdb-ll.c
index 290b29710..d247db068 100644
--- a/xlators/storage/bdb/src/bdb-ll.c
+++ b/xlators/storage/bdb/src/bdb-ll.c
@@ -954,8 +954,9 @@ bdb_dbenv_init (xlator_t *this,
}
ret = 0;
-#if (DB_VERSION_MAJOR == 4 && \
- DB_VERSION_MINOR == 7)
+
+#if ((DB_VERSION_MAJOR > 4) || \
+ (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 7))
if (private->log_auto_remove) {
ret = dbenv->log_set_config (dbenv, DB_LOG_AUTO_REMOVE, 1);
} else {