mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
ITS#6748 Drop possibly-broken memberof log message
This commit is contained in:
parent
5feeec67d7
commit
2a9c5154ef
1 changed files with 4 additions and 6 deletions
|
|
@ -401,9 +401,8 @@ memberof_value_modify(
|
|||
if ( rs2.sr_err != LDAP_SUCCESS ) {
|
||||
char buf[ SLAP_TEXT_BUFLEN ];
|
||||
snprintf( buf, sizeof( buf ),
|
||||
"memberof_value_modify %s=\"%s\" failed err=%d text=%s",
|
||||
ad->ad_cname.bv_val, new_dn->bv_val, rs2.sr_err,
|
||||
rs2.sr_text ? rs2.sr_text : "" );
|
||||
"memberof_value_modify %s=\"%s\" failed err=%d",
|
||||
ad->ad_cname.bv_val, new_dn->bv_val, rs2.sr_err );
|
||||
Debug( LDAP_DEBUG_ANY, "%s: %s\n",
|
||||
op->o_log_prefix, buf, 0 );
|
||||
}
|
||||
|
|
@ -436,9 +435,8 @@ memberof_value_modify(
|
|||
if ( rs2.sr_err != LDAP_SUCCESS ) {
|
||||
char buf[ SLAP_TEXT_BUFLEN ];
|
||||
snprintf( buf, sizeof( buf ),
|
||||
"memberof_value_modify %s=\"%s\" failed err=%d text=%s",
|
||||
ad->ad_cname.bv_val, old_dn->bv_val, rs2.sr_err,
|
||||
rs2.sr_text ? rs2.sr_text : "" );
|
||||
"memberof_value_modify %s=\"%s\" failed err=%d",
|
||||
ad->ad_cname.bv_val, old_dn->bv_val, rs2.sr_err );
|
||||
Debug( LDAP_DEBUG_ANY, "%s: %s\n",
|
||||
op->o_log_prefix, buf, 0 );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue