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
James Lowden
OpenLDAP
Commits
19f3b86c
Commit
19f3b86c
authored
16 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
ITS#5748
parent
e0cbafb1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+1
-0
1 addition, 0 deletions
CHANGES
libraries/liblutil/tavl.c
+3
-3
3 additions, 3 deletions
libraries/liblutil/tavl.c
with
4 additions
and
3 deletions
CHANGES
+
1
−
0
View file @
19f3b86c
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.13 Engineering
Fixed liblutil hex conversion (ITS#5699)
Fixed liblutil returning undefined data (ITS#5748)
Fixed libldap error code return (ITS#5762)
Fixed slapd config backend olcLogFile support (ITS#5765)
Added slapd dn.this ACL limits (ITS#5734)
...
...
This diff is collapsed.
Click to expand it.
libraries/liblutil/tavl.c
+
3
−
3
View file @
19f3b86c
...
...
@@ -448,13 +448,13 @@ tavl_free( Avlnode *root, AVL_FREE dfree )
/*
* tavl_find2 - returns Avlnode instead of data pointer.
* tavl_find3 - as above, but returns Avlnode even if no match is found.
* also
r
et
urn the
last comparison result i
n
r
et
.
* also
s
et
*ret =
last comparison result
, or -1
i
f
r
oot == NULL
.
*/
Avlnode
*
tavl_find3
(
Avlnode
*
root
,
const
void
*
data
,
AVL_CMP
fcmp
,
int
*
ret
)
{
int
cmp
,
dir
;
Avlnode
*
prev
;
int
cmp
=
-
1
,
dir
;
Avlnode
*
prev
=
root
;
while
(
root
!=
0
&&
(
cmp
=
(
*
fcmp
)(
data
,
root
->
avl_data
))
!=
0
)
{
prev
=
root
;
...
...
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