Skip to content
Snippets Groups Projects
Commit 05fd3249 authored by Howard Chu's avatar Howard Chu
Browse files

Fix spurious warning for fasttool keyword when running in Server mode

parent 075a450b
Branches
Tags
No related merge requests found
......@@ -65,8 +65,8 @@ bdb_db_config(
bdb->bi_dbenv_xflags |= DB_TXN_NOSYNC;
/* slapadd/slapindex logging configuration */
} else if ( strcasecmp( argv[0], "fasttool" ) == 0 &&
slapMode & SLAP_TOOL_MODE ) {
} else if ( strcasecmp( argv[0], "fasttool" ) == 0 ) {
if ( slapMode & SLAP_TOOL_MODE )
bdb->bi_dbenv_xflags |= DB_TXN_NOT_DURABLE;
/* slapindex algorithm tuning */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment