mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
Fix error messages
This commit is contained in:
parent
fcd1ce0e28
commit
23bf2fb086
1 changed files with 3 additions and 3 deletions
|
|
@ -1774,11 +1774,11 @@ read_config( const char *fname )
|
|||
if ( cargc < 2 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG(( "config", LDAP_LEVEL_CRIT,
|
||||
"%s: line %d: missing dn in \"updateref <ldapurl>\" "
|
||||
"%s: line %d: missing url in \"updateref <ldapurl>\" "
|
||||
"line.\n", fname, lineno ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: missing dn in \"updateref <ldapurl>\" line\n",
|
||||
"%s: line %d: missing url in \"updateref <ldapurl>\" line\n",
|
||||
fname, lineno, 0 );
|
||||
#endif
|
||||
|
||||
|
|
@ -1821,7 +1821,7 @@ read_config( const char *fname )
|
|||
" line.\n", fname, lineno ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: missing dn in \"replogfile <filename>\" line\n",
|
||||
"%s: line %d: missing filename in \"replogfile <filename>\" line\n",
|
||||
fname, lineno, 0 );
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue