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

Fix backend config table fallthru

parent 0b9ffad7
No related branches found
No related tags found
No related merge requests found
......@@ -468,32 +468,29 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf)
}
}
} else if ( c->be && c->be->be_cf_table ) {
rc = parse_config_table( c->be->be_cf_table, c );
} else if ( c->be ) {
if ( c->be->be_cf_table ) {
rc = parse_config_table( c->be->be_cf_table, c );
if ( rc ) {
switch(rc) {
case SLAP_CONF_UNKNOWN:
Debug( LDAP_DEBUG_CONFIG, "%s: "
"unknown directive <%s> inside backend database definition (ignored)\n",
c->log, *c->argv, 0);
continue;
default:
goto badline;
}
if ( !rc ) continue;
if ( rc != ARG_UNKNOWN ) goto badline;
}
} else if ( c->be && c->be->be_config ) {
rc = (*c->be->be_config)(c->be, c->fname, c->lineno, c->argc, c->argv);
if ( rc ) {
switch(rc) {
case SLAP_CONF_UNKNOWN:
Debug( LDAP_DEBUG_CONFIG, "%s: "
"unknown directive <%s> inside backend database definition (ignored)\n",
c->log, *c->argv, 0);
continue;
default:
goto badline;
if ( c->be->be_config ) {
rc = (*c->be->be_config)(c->be, c->fname, c->lineno,
c->argc, c->argv);
if ( rc ) {
switch(rc) {
case SLAP_CONF_UNKNOWN:
Debug( LDAP_DEBUG_CONFIG, "%s: "
"unknown directive <%s> inside backend database "
"definition (ignored)\n",
c->log, *c->argv, 0);
continue;
default:
goto badline;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment