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

Fix up minor errors in prototypes to bring them in line with LDAP C API draft.

parent 1fe082d1
Branches
Tags
No related merge requests found
......@@ -624,7 +624,7 @@ ldap_add_s LDAP_P((
/*
* in saslbind.c:
* in sasl.c:
*/
LDAP_F( int )
ldap_sasl_bind LDAP_P((
......@@ -634,7 +634,7 @@ ldap_sasl_bind LDAP_P((
struct berval *cred,
LDAPControl **serverctrls,
LDAPControl **clientctrls,
int msgidp ));
int *msgidp ));
LDAP_F( int )
ldap_sasl_bind_s LDAP_P((
......@@ -823,15 +823,26 @@ ldap_delete_s LDAP_P((
* in error.c:
*/
LDAP_F( int )
ldap_result2error LDAP_P(( /* deprecated */
LDAP *ld,
LDAPMessage *r,
int freeit ));
ldap_parse_result LDAP_P((
LDAP *ld,
LDAPMessage *res,
int *errcodep,
char **matcheddnp,
char **errmsgp,
char ***referralsp,
LDAPControl ***serverctrls,
int freeit ));
LDAP_F( char *)
ldap_err2string LDAP_P((
int err ));
LDAP_F( int )
ldap_result2error LDAP_P(( /* deprecated */
LDAP *ld,
LDAPMessage *r,
int freeit ));
LDAP_F( void )
ldap_perror LDAP_P(( /* deprecated */
LDAP *ld,
......@@ -1138,17 +1149,6 @@ ldap_result LDAP_P((
struct timeval *timeout,
LDAPMessage **result ));
LDAP_F( int )
ldap_parse_result LDAP_P((
LDAP *ld,
LDAPMessage *res,
int *errcodep,
char **matcheddnp,
char **errmsgp,
char ***referralsp,
LDAPControl ***serverctrls,
int freeit ));
LDAP_F( int )
ldap_msgtype LDAP_P((
LDAPMessage *lm ));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment