mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 14:10:39 -05:00
Fix slapMode parens
This commit is contained in:
parent
d2dd3a616c
commit
d38707a952
1 changed files with 1 additions and 1 deletions
|
|
@ -373,7 +373,7 @@ bdb_db_open( BackendDB *be )
|
|||
/* If we're in server mode and time-based checkpointing is enabled,
|
||||
* submit a task to perform periodic checkpoints.
|
||||
*/
|
||||
if ( slapMode & SLAP_SERVER_MODE && bdb->bi_txn_cp &&
|
||||
if (( slapMode & SLAP_SERVER_MODE ) && bdb->bi_txn_cp &&
|
||||
bdb->bi_txn_cp_min ) {
|
||||
ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
|
||||
ldap_pvt_runqueue_insert( &slapd_rq, bdb->bi_txn_cp_min*60,
|
||||
|
|
|
|||
Loading…
Reference in a new issue