Skip to content
Snippets Groups Projects
Commit 56e45fc1 authored by Howard Chu's avatar Howard Chu
Browse files

Fix ITS#3490, set proper overlay context

parent c8c043bd
No related branches found
No related tags found
No related merge requests found
......@@ -279,7 +279,7 @@ over_op_func(
for (; on; on=on->on_next ) {
func = &on->on_bi.bi_op_bind;
if ( func[which] ) {
db.bd_info = (BackendInfo *)on;
op->o_bd->bd_info = (BackendInfo *)on;
rc = func[which]( op, rs );
if ( rc != SLAP_CB_CONTINUE ) break;
}
......@@ -287,7 +287,7 @@ over_op_func(
func = &oi->oi_orig->bi_op_bind;
if ( func[which] && rc == SLAP_CB_CONTINUE ) {
db.bd_info = oi->oi_orig;
op->o_bd->bd_info = oi->oi_orig;
rc = func[which]( op, rs );
}
/* should not fall thru this far without anything happening... */
......
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