mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Cleanup: Move snprintf preformatting into unused Statslog() argument
This commit is contained in:
parent
ffb66f41bb
commit
93c75ea669
@ -649,14 +649,10 @@ abandon:
|
||||
|
||||
if ( send_ldap_response( op, rs ) == SLAP_CB_CONTINUE ) {
|
||||
if ( op->o_tag == LDAP_REQ_SEARCH ) {
|
||||
char nbuf[64];
|
||||
snprintf( nbuf, sizeof nbuf, "%d nentries=%d",
|
||||
rs->sr_err, rs->sr_nentries );
|
||||
|
||||
Statslog( LDAP_DEBUG_STATS,
|
||||
"%s SEARCH RESULT tag=%lu err=%s text=%s\n",
|
||||
op->o_log_prefix, rs->sr_tag, nbuf,
|
||||
rs->sr_text ? rs->sr_text : "", 0 );
|
||||
"%s SEARCH RESULT tag=%lu err=%d nentries=%d text=%s\n",
|
||||
op->o_log_prefix, rs->sr_tag, rs->sr_err,
|
||||
rs->sr_nentries, rs->sr_text ? rs->sr_text : "" );
|
||||
} else {
|
||||
Statslog( LDAP_DEBUG_STATS,
|
||||
"%s RESULT tag=%lu err=%d text=%s\n",
|
||||
|
Loading…
Reference in New Issue
Block a user