mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Fix prototypes to use ber_int_t consistently.
This commit is contained in:
parent
c59d1a34db
commit
3978748e35
@ -328,13 +328,13 @@ struct berval **get_entry_referrals LDAP_P((
|
||||
|
||||
void send_ldap_result LDAP_P((
|
||||
Connection *conn, Operation *op,
|
||||
int err, const char *matched, const char *text,
|
||||
ber_int_t err, const char *matched, const char *text,
|
||||
struct berval **refs,
|
||||
LDAPControl **ctrls ));
|
||||
|
||||
void send_ldap_disconnect LDAP_P((
|
||||
Connection *conn, Operation *op,
|
||||
int err, const char *text ));
|
||||
ber_int_t err, const char *text ));
|
||||
|
||||
void send_ldap_extended LDAP_P((
|
||||
Connection *conn, Operation *op,
|
||||
@ -344,7 +344,7 @@ void send_ldap_extended LDAP_P((
|
||||
|
||||
void send_search_result LDAP_P((
|
||||
Connection *conn, Operation *op,
|
||||
int err, const char *matched, const char *text,
|
||||
ber_int_t err, const char *matched, const char *text,
|
||||
struct berval **refs,
|
||||
LDAPControl **ctrls,
|
||||
int nentries ));
|
||||
|
@ -43,7 +43,7 @@ void
|
||||
send_ldap_result(
|
||||
Connection *conn,
|
||||
Operation *op,
|
||||
int err,
|
||||
ber_int_t err,
|
||||
const char *matched,
|
||||
const char *text,
|
||||
struct berval **refs,
|
||||
@ -57,7 +57,7 @@ void
|
||||
send_search_result(
|
||||
Connection *conn,
|
||||
Operation *op,
|
||||
int err,
|
||||
ber_int_t err,
|
||||
const char *matched,
|
||||
const char *text,
|
||||
struct berval **refs,
|
||||
|
Loading…
Reference in New Issue
Block a user