mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-20 00:10:59 -05:00
Fix bad eos in dead code.
This commit is contained in:
parent
032a05c6fb
commit
c201bdb1cc
1 changed files with 5 additions and 5 deletions
|
|
@ -1809,12 +1809,12 @@ read_config( const char *fname, int depth )
|
|||
}
|
||||
if ( strcasecmp( cargv[1], "off" ) == 0 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( CONFIG, CRIT,
|
||||
"%s: line %d: schema checking cannot be disabled, option ignored!
|
||||
"vary!\n", fname, lineno , 0 );
|
||||
LDAP_LOG( CONFIG, CRIT, "%s: line %d: "
|
||||
"schema checking cannot be disabled, option ignored!\n",
|
||||
fname, lineno , 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: schema checking cannot be diabled, option ignored!\n",
|
||||
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
||||
"schema checking cannot be diabled, option ignored!\n",
|
||||
fname, lineno, 0 );
|
||||
#endif
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue