Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jaak Ristioja
OpenLDAP
Commits
09a007c0
Commit
09a007c0
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Fix up minor errors in prototypes to bring them in line with LDAP C API draft.
parent
1fe082d1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/ldap.h
+17
-17
17 additions, 17 deletions
include/ldap.h
with
17 additions
and
17 deletions
include/ldap.h
+
17
−
17
View file @
09a007c0
...
...
@@ -624,7 +624,7 @@ ldap_add_s LDAP_P((
/*
* in sasl
bind
.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
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment