Tweak prev commit:

Preserve delete/replace indication from original request
This commit is contained in:
Howard Chu 2006-11-02 19:26:04 +00:00
parent 3b565d4310
commit 1b1a0ebf18

View file

@ -1081,7 +1081,10 @@ static int accesslog_response(Operation *op, SlapReply *rs) {
ptr = lutil_strcopy( vals[i].bv_val,
m->sml_desc->ad_cname.bv_val );
*ptr++ = ':';
*ptr++ = '-';
if ( m->sml_op == LDAP_MOD_DELETE )
*ptr++ = '-';
else
*ptr++ = '=';
*ptr = '\0';
i++;
}