Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
19f3b86c
Commit
19f3b86c
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5748
parent
e0cbafb1
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
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)
...
...
libraries/liblutil/tavl.c
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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment