use SLAP_DBFLAGS instead of be->be_flags

This commit is contained in:
Kurt Zeilenga 2004-04-05 23:42:59 +00:00
parent 313821118e
commit 9a64fdb991
3 changed files with 6 additions and 6 deletions

View File

@ -146,7 +146,7 @@ ldap_back_db_init(
li->be = be;
be->be_private = li;
be->be_flags |= SLAP_BFLAG_NOLASTMOD;
SLAP_DBFLAGS(be) |= SLAP_BFLAG_NOLASTMOD;
return 0;
}

View File

@ -251,7 +251,7 @@ monitor_back_db_init(
be_monitor = be;
/* indicate system schema supported */
be->be_flags |= SLAP_BFLAG_MONITOR;
SLAP_DBFLAGS(be) |= SLAP_BFLAG_MONITOR;
dn.bv_val = SLAPD_MONITOR_DN;
dn.bv_len = sizeof( SLAPD_MONITOR_DN ) - 1;

View File

@ -960,7 +960,7 @@ read_config( const char *fname, int depth )
return 1;
} else {
be->be_flags |= SLAP_DBFLAG_GLUE_SUBORDINATE;
SLAP_DBFLAGS(be) |= SLAP_DBFLAG_GLUE_SUBORDINATE;
num_subordinates++;
}
@ -2184,13 +2184,13 @@ read_config( const char *fname, int depth )
}
if ( strcasecmp( cargv[1], "on" ) == 0 ) {
if ( be ) {
be->be_flags &= ~SLAP_DBFLAG_NOLASTMOD;
SLAP_DBFALGS(be) &= ~SLAP_DBFLAG_NOLASTMOD;
} else {
lastmod = 1;
}
} else {
if ( be ) {
be->be_flags |= SLAP_DBFLAG_NOLASTMOD;
SLAP_DBFALGS(be) |= SLAP_DBFLAG_NOLASTMOD;
} else {
lastmod = 0;
}
@ -2941,7 +2941,7 @@ add_syncrepl(
si->si_provideruri == NULL ? "(null)" : si->si_provideruri, 0, 0 );
#endif
if ( !si->si_schemachecking ) {
be->be_flags |= SLAP_DBFLAG_NO_SCHEMA_CHECK;
SLAP_DBFLAGS(be) |= SLAP_DBFLAG_NO_SCHEMA_CHECK;
}
si->si_be = be;
LDAP_STAILQ_INSERT_TAIL( &be->be_syncinfo, si, si_next );