mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 15:41:24 -05:00
Fix send_ldap* macros
This commit is contained in:
parent
dca809ff8d
commit
f0cae31b0e
1 changed files with 5 additions and 5 deletions
|
|
@ -2372,15 +2372,15 @@ typedef void (SEND_LDAP_INTERMEDIATE)(
|
|||
struct slap_op *op, struct slap_rep *rs);
|
||||
|
||||
#define send_ldap_result( op, rs ) \
|
||||
(op->o_conn->c_send_ldap_result)( op, rs )
|
||||
((op)->o_conn->c_send_ldap_result)( op, rs )
|
||||
#define send_search_entry( op, rs ) \
|
||||
(op->o_conn->c_send_search_entry)( op, rs )
|
||||
((op)->o_conn->c_send_search_entry)( op, rs )
|
||||
#define send_search_reference( op, rs ) \
|
||||
(op->o_conn->c_send_search_reference)( op, rs )
|
||||
((op)->o_conn->c_send_search_reference)( op, rs )
|
||||
#define send_ldap_extended( op, rs ) \
|
||||
(op->o_conn->c_send_ldap_extended)( op, rs )
|
||||
((op)->o_conn->c_send_ldap_extended)( op, rs )
|
||||
#define send_ldap_intermediate( op, rs ) \
|
||||
(op->o_conn->c_send_ldap_intermediate)( op, rs )
|
||||
((op)->o_conn->c_send_ldap_intermediate)( op, rs )
|
||||
|
||||
typedef struct slap_listener Listener;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue