mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 23:19:59 -05:00
fix log message (ITS#2359)
This commit is contained in:
parent
0f0122abdd
commit
998ab2f441
1 changed files with 6 additions and 8 deletions
|
|
@ -383,17 +383,15 @@ meta_back_dobind( struct metaconn *lc, Operation *op )
|
|||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( BACK_META, WARNING,
|
||||
"meta_back_dobind: (anonymous)"
|
||||
" bind as \"%s\" failed"
|
||||
" with error \"%s\"\n",
|
||||
lsc->bound_dn.bv_val,
|
||||
ldap_err2string( rc ), 0 );
|
||||
" bind failed"
|
||||
" with error %d (%s)\n",
|
||||
rc, ldap_err2string( rc ), 0 );
|
||||
#else /* !NEW_LOGGING */
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"==>meta_back_dobind: (anonymous)"
|
||||
" bind as \"%s\" failed"
|
||||
" with error \"%s\"\n%s",
|
||||
lsc->bound_dn.bv_val,
|
||||
ldap_err2string( rc ), "" );
|
||||
" bind failed"
|
||||
" with error %d (%s)\n",
|
||||
rc, ldap_err2string( rc ), 0 );
|
||||
#endif /* !NEW_LOGGING */
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue