mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
log slapi config read failure (partial fulfilment of ITS#3098)
This commit is contained in:
parent
6366a0ca61
commit
3c1c61c5ef
1 changed files with 10 additions and 1 deletions
|
|
@ -2496,7 +2496,16 @@ read_config( const char *fname, int depth )
|
|||
#endif /* notdef */
|
||||
|
||||
if ( slapi_int_read_config( be, fname, lineno, cargc, cargv )
|
||||
!= LDAP_SUCCESS ) {
|
||||
!= LDAP_SUCCESS )
|
||||
{
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( CONFIG, INFO,
|
||||
"%s: line %d: SLAPI config read failed.\n",
|
||||
fname, lineno, 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY, "%s: line %d: SLAPI "
|
||||
"config read failed.\n", fname, lineno, 0 );
|
||||
#endif
|
||||
return( 1 );
|
||||
}
|
||||
slapi_plugins_used++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue