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
08d304d5
Commit
08d304d5
authored
Jul 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5589
parent
15dbd6fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
08d304d5
...
...
@@ -21,6 +21,7 @@ OpenLDAP 2.4.11 Engineering
Fixed slapo-ppolicy DNs with whitespaces (ITS#5552)
Fixed slapo-syncprov ACL evaluation (ITS#5548)
Fixed slapo-syncprov full reload (ITS#5564)
Fixed slapo-syncprov crash with delcsn (ITS#5589)
Fixed slapo-unique filter normalization (ITS#5581)
Fixed contrib smbk5pwd terminator (ITS#5575)
Build Environment
...
...
servers/slapd/overlays/syncprov.c
View file @
08d304d5
...
...
@@ -1577,14 +1577,16 @@ syncprov_playlog( Operation *op, SlapReply *rs, sessionlog *sl,
if
(
delcsn
[
0
].
bv_len
)
{
slap_compose_sync_cookie
(
op
,
&
cookie
,
delcsn
,
srs
->
sr_state
.
rid
,
srs
->
sr_state
.
sid
);
}
Debug
(
LDAP_DEBUG_SYNC
,
"syncprov_playlog: cookie=%s
\n
"
,
cookie
.
bv_val
,
0
,
0
);
Debug
(
LDAP_DEBUG_SYNC
,
"syncprov_playlog: cookie=%s
\n
"
,
cookie
.
bv_val
,
0
,
0
);
}
uuids
[
ndel
].
bv_val
=
NULL
;
syncprov_sendinfo
(
op
,
rs
,
LDAP_TAG_SYNC_ID_SET
,
delcsn
[
0
].
bv_len
?
&
cookie
:
NULL
,
0
,
uuids
,
1
);
op
->
o_tmpfree
(
cookie
.
bv_val
,
op
->
o_tmpmemctx
);
if
(
delcsn
[
0
].
bv_len
)
{
op
->
o_tmpfree
(
cookie
.
bv_val
,
op
->
o_tmpmemctx
);
}
}
op
->
o_tmpfree
(
uuids
,
op
->
o_tmpmemctx
);
}
...
...
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