mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Pass extended ops thru as well
This commit is contained in:
parent
8b457119ac
commit
39c3efdd7b
1 changed files with 2 additions and 0 deletions
|
|
@ -194,6 +194,7 @@ glue_op_func ( Operation *op, SlapReply *rs )
|
|||
case LDAP_REQ_DELETE: which = op_delete; break;
|
||||
case LDAP_REQ_MODIFY: which = op_modify; break;
|
||||
case LDAP_REQ_MODRDN: which = op_modrdn; break;
|
||||
case LDAP_REQ_EXTENDED: which = op_extended; break;
|
||||
default: assert( 0 ); break;
|
||||
}
|
||||
|
||||
|
|
@ -1024,6 +1025,7 @@ glue_sub_init()
|
|||
glue.on_bi.bi_op_modrdn = glue_op_func;
|
||||
glue.on_bi.bi_op_add = glue_op_func;
|
||||
glue.on_bi.bi_op_delete = glue_op_func;
|
||||
glue.on_bi.bi_extended = glue_op_func;
|
||||
|
||||
glue.on_bi.bi_chk_referrals = glue_chk_referrals;
|
||||
glue.on_bi.bi_chk_controls = glue_chk_controls;
|
||||
|
|
|
|||
Loading…
Reference in a new issue