Fix prototypes to use ber_int_t consistently.

This commit is contained in:
Kurt Zeilenga 1999-11-25 17:52:47 +00:00
parent c59d1a34db
commit 3978748e35
2 changed files with 5 additions and 5 deletions

View File

@ -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 ));

View File

@ -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,