Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
0098ed12
Commit
0098ed12
authored
Dec 09, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6425
parent
ce75e988
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
0098ed12
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.4.21 Engineering
Fixed slapd looping with SSL/TLS connections (ITS#6412)
Fixed slapd syncrepl freeing tasks from queue (ITS#6413)
Fixed slapd syncrepl parsing of tls defaults (ITS#6419)
Fixed slapd syncrepl uninitialized variables (ITS#6425)
Fixed slapd-config Adds with Abstract classes (ITS#6408)
Fixed slapo-dynlist behavior with simple filters (ITS#6421)
Fixed slapd-ldif access outside database directory (ITS#6414)
...
...
servers/slapd/syncrepl.c
View file @
0098ed12
...
...
@@ -810,7 +810,7 @@ do_syncrep2(
ldap_get_entry_controls
(
si
->
si_ld
,
msg
,
&
rctrls
);
/* we can't work without the control */
if
(
rctrls
)
{
LDAPControl
**
next
;
LDAPControl
**
next
=
NULL
;
/* NOTE: make sure we use the right one;
* a better approach would be to run thru
* the whole list and take care of all */
...
...
@@ -998,7 +998,7 @@ do_syncrep2(
si
->
si_ridtxt
,
err
,
ldap_err2string
(
err
)
);
}
if
(
rctrls
)
{
LDAPControl
**
next
;
LDAPControl
**
next
=
NULL
;
/* NOTE: make sure we use the right one;
* a better approach would be to run thru
* the whole list and take care of all */
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment