mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Fix up minor errors in prototypes to bring them in line with LDAP C API draft.
This commit is contained in:
parent
1fe082d16c
commit
09a007c031
1 changed files with 17 additions and 17 deletions
|
|
@ -624,7 +624,7 @@ ldap_add_s LDAP_P((
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* in saslbind.c:
|
* in sasl.c:
|
||||||
*/
|
*/
|
||||||
LDAP_F( int )
|
LDAP_F( int )
|
||||||
ldap_sasl_bind LDAP_P((
|
ldap_sasl_bind LDAP_P((
|
||||||
|
|
@ -634,7 +634,7 @@ ldap_sasl_bind LDAP_P((
|
||||||
struct berval *cred,
|
struct berval *cred,
|
||||||
LDAPControl **serverctrls,
|
LDAPControl **serverctrls,
|
||||||
LDAPControl **clientctrls,
|
LDAPControl **clientctrls,
|
||||||
int msgidp ));
|
int *msgidp ));
|
||||||
|
|
||||||
LDAP_F( int )
|
LDAP_F( int )
|
||||||
ldap_sasl_bind_s LDAP_P((
|
ldap_sasl_bind_s LDAP_P((
|
||||||
|
|
@ -823,15 +823,26 @@ ldap_delete_s LDAP_P((
|
||||||
* in error.c:
|
* in error.c:
|
||||||
*/
|
*/
|
||||||
LDAP_F( int )
|
LDAP_F( int )
|
||||||
ldap_result2error LDAP_P(( /* deprecated */
|
ldap_parse_result LDAP_P((
|
||||||
LDAP *ld,
|
LDAP *ld,
|
||||||
LDAPMessage *r,
|
LDAPMessage *res,
|
||||||
|
int *errcodep,
|
||||||
|
char **matcheddnp,
|
||||||
|
char **errmsgp,
|
||||||
|
char ***referralsp,
|
||||||
|
LDAPControl ***serverctrls,
|
||||||
int freeit ));
|
int freeit ));
|
||||||
|
|
||||||
LDAP_F( char *)
|
LDAP_F( char *)
|
||||||
ldap_err2string LDAP_P((
|
ldap_err2string LDAP_P((
|
||||||
int err ));
|
int err ));
|
||||||
|
|
||||||
|
LDAP_F( int )
|
||||||
|
ldap_result2error LDAP_P(( /* deprecated */
|
||||||
|
LDAP *ld,
|
||||||
|
LDAPMessage *r,
|
||||||
|
int freeit ));
|
||||||
|
|
||||||
LDAP_F( void )
|
LDAP_F( void )
|
||||||
ldap_perror LDAP_P(( /* deprecated */
|
ldap_perror LDAP_P(( /* deprecated */
|
||||||
LDAP *ld,
|
LDAP *ld,
|
||||||
|
|
@ -1138,17 +1149,6 @@ ldap_result LDAP_P((
|
||||||
struct timeval *timeout,
|
struct timeval *timeout,
|
||||||
LDAPMessage **result ));
|
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_F( int )
|
||||||
ldap_msgtype LDAP_P((
|
ldap_msgtype LDAP_P((
|
||||||
LDAPMessage *lm ));
|
LDAPMessage *lm ));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue