mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 21:50:49 -05:00
Fix prev commit
This commit is contained in:
parent
fda662bd34
commit
48ee1e7021
1 changed files with 7 additions and 4 deletions
|
|
@ -1063,10 +1063,13 @@ config_generic(ConfigArgs *c) {
|
|||
|
||||
static int
|
||||
config_fname(ConfigArgs *c) {
|
||||
if(c->op == SLAP_CONFIG_EMIT && c->line) {
|
||||
ConfigFile *cf = (ConfigFile *)c->line;
|
||||
value_add_one( &c->rvalue_vals, &cf->c_file );
|
||||
return 0;
|
||||
if(c->op == SLAP_CONFIG_EMIT) {
|
||||
if (c->line) {
|
||||
ConfigFile *cf = (ConfigFile *)c->line;
|
||||
value_add_one( &c->rvalue_vals, &cf->c_file );
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
return(0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue