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
Tero Saarni
OpenLDAP
Commits
c696256c
Commit
c696256c
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6707
parent
686ab279
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
c696256c
...
...
@@ -10,6 +10,7 @@ OpenLDAP 2.4.24 Engineering
Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd syncrepl reuse of presence list (ITS#6707)
Fixed slapd-bdb entry cache delete failure (ITS#6577)
Fixed slapd-ndb to honor rootpw setting (ITS#6661)
Fixed slapd-meta anon retry with failed auth method (ITS#6643)
...
...
servers/slapd/syncrepl.c
View file @
c696256c
...
...
@@ -1415,6 +1415,11 @@ do_syncrepl(
si
->
si_refreshDelete
=
0
;
si
->
si_refreshPresent
=
0
;
if
(
si
->
si_presentlist
)
{
avl_free
(
si
->
si_presentlist
,
ch_free
);
si
->
si_presentlist
=
NULL
;
}
/* use main DB when retrieving contextCSN */
op
->
o_bd
=
si
->
si_wbe
;
op
->
o_dn
=
op
->
o_bd
->
be_rootdn
;
...
...
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