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
e974279f
Commit
e974279f
authored
Nov 10, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6370
parent
52e5e0aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
e974279f
...
...
@@ -18,6 +18,7 @@ OpenLDAP 2.4.20 Engineering
Fixed slapd-relay bind segfault (ITS#6337)
Fixed slapo-memberof operational attr updates (ITS#6329)
Fixed slapo-pcache entry dupe (ITS#6310)
Fixed slapo-syncprov checkpoint conversion (ITS#6370)
Fixed slapo-syncprov deadlock (ITS#6335)
Fixed slapo-syncprov out of order changes (ITS#6346)
Build Environment
...
...
servers/slapd/overlays/syncprov.c
View file @
e974279f
...
...
@@ -2690,8 +2690,11 @@ sp_cf_gen(ConfigArgs *c)
case
SP_CHKPT
:
if
(
si
->
si_chkops
||
si
->
si_chktime
)
{
struct
berval
bv
;
/* we assume si_chktime is a multiple of 60
* because the parsed value was originally
* multiplied by 60 */
bv
.
bv_len
=
snprintf
(
c
->
cr_msg
,
sizeof
(
c
->
cr_msg
),
"%d %d"
,
si
->
si_chkops
,
si
->
si_chktime
);
"%d %d"
,
si
->
si_chkops
,
si
->
si_chktime
/
60
);
if
(
bv
.
bv_len
>=
sizeof
(
c
->
cr_msg
)
)
{
rc
=
1
;
}
else
{
...
...
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