mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Fix unterminated debug msgs
This commit is contained in:
parent
5ffc2ce9f1
commit
cd23b2ddf4
@ -219,7 +219,7 @@ int config_add_vals(ConfigTable *Conf, ConfigArgs *c) {
|
|||||||
rc = (*((ConfigDriver*)Conf->arg_item))(c);
|
rc = (*((ConfigDriver*)Conf->arg_item))(c);
|
||||||
if(c->be == frontendDB) c->be = NULL;
|
if(c->be == frontendDB) c->be = NULL;
|
||||||
if(rc) {
|
if(rc) {
|
||||||
Debug(LDAP_DEBUG_CONFIG, "%s: handler for <%s> exited with %d!",
|
Debug(LDAP_DEBUG_CONFIG, "%s: handler for <%s> exited with %d!\n",
|
||||||
c->log, Conf->name, rc);
|
c->log, Conf->name, rc);
|
||||||
return(ARG_BAD_CONF);
|
return(ARG_BAD_CONF);
|
||||||
}
|
}
|
||||||
@ -231,7 +231,7 @@ int config_add_vals(ConfigTable *Conf, ConfigArgs *c) {
|
|||||||
else if (c->bi)
|
else if (c->bi)
|
||||||
ptr = c->bi->bi_private;
|
ptr = c->bi->bi_private;
|
||||||
else {
|
else {
|
||||||
Debug(LDAP_DEBUG_CONFIG, "%s: offset for <%s> missing base pointer!",
|
Debug(LDAP_DEBUG_CONFIG, "%s: offset for <%s> missing base pointer!\n",
|
||||||
c->log, Conf->name, 0);
|
c->log, Conf->name, 0);
|
||||||
return(ARG_BAD_CONF);
|
return(ARG_BAD_CONF);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user