Skip to content
Snippets Groups Projects
Commit 3978748e authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix prototypes to use ber_int_t consistently.

parent c59d1a34
Branches
Tags
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment