warn when using "replogfile" or "replica" inside monitor database

This commit is contained in:
Pierangelo Masarati 2004-10-27 11:34:27 +00:00
parent df745fc44f
commit fbe8243b86

View file

@ -1535,6 +1535,14 @@ restrict_unknown:;
} else {
int nr = -1;
if ( SLAP_MONITOR( be ) ) {
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
"\"replica\" should not be used "
"inside monitor database\n",
fname, lineno, 0 );
/* FIXME: turn into an error? */
}
for ( i = 1; i < cargc; i++ ) {
if ( strncasecmp( cargv[i], "host=", 5 )
== 0 ) {
@ -1711,7 +1719,15 @@ restrict_unknown:;
return( 1 );
}
if ( be ) {
if ( SLAP_MONITOR( be ) ) {
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
"\"replogfile\" should not be used "
"inside monitor database\n",
fname, lineno, 0 );
/* FIXME: turn into an error? */
}
be->be_replogfile = ch_strdup( cargv[1] );
} else {
replogfile = ch_strdup( cargv[1] );
}