mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
use appropriate log level if bailing out; need to use Debug() instead fprintf( stderr ) in many places...
This commit is contained in:
parent
6d7b27fcca
commit
54de0cbffc
3 changed files with 17 additions and 13 deletions
|
|
@ -1241,9 +1241,10 @@ config_generic(ConfigArgs *c) {
|
|||
|
||||
|
||||
default:
|
||||
Debug(LDAP_DEBUG_ANY, "%s: unknown CFG_TYPE %d"
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR,
|
||||
"%s: unknown CFG_TYPE %d"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, c->type, 0);
|
||||
c->log, c->type, 0 );
|
||||
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
||||
return 1;
|
||||
#endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
|
||||
|
|
@ -1431,7 +1432,7 @@ config_sizelimit(ConfigArgs *c) {
|
|||
c->log, c->msg, c->argv[i]);
|
||||
return(1);
|
||||
} else if(next[0] != '\0') {
|
||||
Debug(LDAP_DEBUG_ANY, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"trailing chars \"%s\" in \"sizelimit <limit>\" line"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, next, 0);
|
||||
|
|
@ -1488,7 +1489,7 @@ config_timelimit(ConfigArgs *c) {
|
|||
c->log, c->msg, c->argv[i]);
|
||||
return(1);
|
||||
} else if(next[0] != '\0') {
|
||||
Debug(LDAP_DEBUG_ANY, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"trailing chars \"%s\" in \"timelimit <limit>\" line"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, next, 0);
|
||||
|
|
@ -1512,7 +1513,7 @@ config_overlay(ConfigArgs *c) {
|
|||
}
|
||||
if(c->argv[1][0] == '-' && overlay_config(c->be, &c->argv[1][1])) {
|
||||
/* log error */
|
||||
Debug(LDAP_DEBUG_ANY, "%s: (optional) %s overlay \"%s\" configuration failed"
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: (optional) %s overlay \"%s\" configuration failed"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, c->be == frontendDB ? "global " : "", c->argv[1][1]);
|
||||
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
||||
|
|
@ -1574,7 +1575,8 @@ config_suffix(ConfigArgs *c) {
|
|||
ndn = c->value_ndn;
|
||||
tbe = select_backend(&ndn, 0, 0);
|
||||
if(tbe == c->be) {
|
||||
Debug(LDAP_DEBUG_ANY, "%s: suffix already served by this backend!"
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR,
|
||||
"%s: suffix already served by this backend!"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, 0, 0);
|
||||
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
||||
|
|
@ -2114,7 +2116,7 @@ config_replica(ConfigArgs *c) {
|
|||
if(!strncasecmp(c->argv[i], "suffix=", STRLENOF( "suffix="))) {
|
||||
switch(add_replica_suffix(c->be, nr, c->argv[i] + STRLENOF("suffix="))) {
|
||||
case 1:
|
||||
Debug(LDAP_DEBUG_ANY, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"suffix \"%s\" in \"replica\" line is not valid for backend"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, c->argv[i] + STRLENOF("suffix="), 0);
|
||||
|
|
@ -2123,7 +2125,7 @@ config_replica(ConfigArgs *c) {
|
|||
#endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
|
||||
break;
|
||||
case 2:
|
||||
Debug(LDAP_DEBUG_ANY, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"unable to normalize suffix in \"replica\" line"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, 0, 0);
|
||||
|
|
|
|||
|
|
@ -569,7 +569,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf)
|
|||
}
|
||||
|
||||
if ( c->argc < 1 ) {
|
||||
Debug(LDAP_DEBUG_CONFIG, "%s: bad config line"
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: bad config line"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, 0, 0);
|
||||
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
||||
|
|
@ -614,7 +614,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf)
|
|||
if ( rc ) {
|
||||
switch(rc) {
|
||||
case SLAP_CONF_UNKNOWN:
|
||||
Debug(LDAP_DEBUG_CONFIG, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"unknown directive <%s> inside backend info definition"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, *c->argv, 0);
|
||||
|
|
@ -642,7 +642,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf)
|
|||
if ( rc ) {
|
||||
switch(rc) {
|
||||
case SLAP_CONF_UNKNOWN:
|
||||
Debug( LDAP_DEBUG_CONFIG, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"unknown directive <%s> inside backend database "
|
||||
"definition" SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, *c->argv, 0);
|
||||
|
|
@ -660,7 +660,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf)
|
|||
if ( rc ) {
|
||||
switch(rc) {
|
||||
case SLAP_CONF_UNKNOWN:
|
||||
Debug( LDAP_DEBUG_CONFIG, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"unknown directive <%s> inside global database definition"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, *c->argv, 0);
|
||||
|
|
@ -674,7 +674,7 @@ read_config_file(const char *fname, int depth, ConfigArgs *cf)
|
|||
}
|
||||
|
||||
} else {
|
||||
Debug(LDAP_DEBUG_CONFIG, "%s: "
|
||||
Debug( SLAPD_DEBUG_CONFIG_ERROR, "%s: "
|
||||
"unknown directive <%s> outside backend info and database definitions"
|
||||
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
||||
c->log, *c->argv, 0);
|
||||
|
|
|
|||
|
|
@ -81,8 +81,10 @@ LDAP_BEGIN_DECL
|
|||
*/
|
||||
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
||||
#define SLAPD_CONF_UNKNOWN_IGNORED ""
|
||||
#define SLAPD_DEBUG_CONFIG_ERROR LDAP_DEBUG_ANY
|
||||
#else /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
|
||||
#define SLAPD_CONF_UNKNOWN_IGNORED " (ignored)"
|
||||
#define SLAPD_DEBUG_CONFIG_ERROR LDAP_DEBUG_CONFIG
|
||||
#endif /* ! SLAPD_CONF_UNKNOWN_BAILOUT */
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue