Skip to content
Snippets Groups Projects
Commit dcd15bcd authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6403

parent ce3542c7
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.21 Engineering
Fixed liblutil for negative time offsets (ITS#6405)
Fixed slapd use correct ce_type (ITS#6408)
Fixed slapo-translucent with back-null (ITS#6403)
Fixed slapo-unique conflict with ppolicy (ITS#6270)
Build Environment
Fixed broken LBER_INVALID macro (ITS#6402)
......
......@@ -585,7 +585,7 @@ static int translucent_compare(Operation *op, SlapReply *rs) {
slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
translucent_info *ov = on->on_bi.bi_private;
AttributeAssertion *ava = op->orc_ava;
Entry *e;
Entry *e = NULL;
BackendDB *db;
int rc;
......@@ -852,6 +852,7 @@ static int translucent_search_cb(Operation *op, SlapReply *rs) {
} else {
/* Else we have remote, get local */
op->o_bd = tc->db;
le = NULL;
rc = overlay_entry_get_ov(op, &rs->sr_entry->e_nname, NULL, NULL, 0, &le, on);
if ( rc == LDAP_SUCCESS && le ) {
re = entry_dup( rs->sr_entry );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment