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
2ed1c262
Commit
2ed1c262
authored
Jan 06, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6503
parent
3cbf0e80
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
2ed1c262
...
...
@@ -100,6 +100,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapo-syncprov to refresh if context is dirty (ITS#6710)
Fixed slapo-syncprov CSN updates to all replicas (ITS#6718)
Fixed slapo-syncprov sessionlog ordering (ITS#6716)
Fixed slapo-syncprov sessionlog with adds (ITS#6503)
Fixed slapo-translucent entry leak (ITS#6746)
Fixed contrib/autogroup LDAP URI with attribute filter (ITS#6536)
Fixed contrib/autogroup install location (ITS#6684)
...
...
servers/slapd/overlays/syncprov.c
View file @
2ed1c262
...
...
@@ -1641,6 +1641,8 @@ syncprov_playlog( Operation *op, SlapReply *rs, sessionlog *sl,
delcsn
[
0
].
bv_len
=
se
->
se_csn
.
bv_len
;
delcsn
[
0
].
bv_val
[
delcsn
[
0
].
bv_len
]
=
'\0'
;
}
else
{
if
(
se
->
se_tag
==
LDAP_REQ_ADD
)
continue
;
nmods
++
;
j
=
num
-
nmods
;
}
...
...
@@ -1930,7 +1932,7 @@ syncprov_op_response( Operation *op, SlapReply *rs )
}
/* Add any log records */
if
(
si
->
si_logs
&&
op
->
o_tag
!=
LDAP_REQ_ADD
)
{
if
(
si
->
si_logs
)
{
syncprov_add_slog
(
op
);
}
leave:
ldap_pvt_thread_mutex_unlock
(
&
si
->
si_resp_mutex
);
...
...
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