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
be5f314f
Commit
be5f314f
authored
Jul 09, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5564
parent
8f8da231
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
be5f314f
...
@@ -9,6 +9,7 @@ OpenLDAP 2.4.11 Engineering
...
@@ -9,6 +9,7 @@ OpenLDAP 2.4.11 Engineering
Fixed slapo-pcache handling of negative search caches (ITS#5546)
Fixed slapo-pcache handling of negative search caches (ITS#5546)
Fixed slapo-ppolicy DNs with whitespaces (ITS#5552)
Fixed slapo-ppolicy DNs with whitespaces (ITS#5552)
Fixed slapo-syncprov ACL evaluation (ITS#5548)
Fixed slapo-syncprov ACL evaluation (ITS#5548)
Fixed slapo-syncprov full reload (ITS#5564)
Build Environment
Build Environment
Fixed test048 to skip if threads is not available (ITS#5529)
Fixed test048 to skip if threads is not available (ITS#5529)
Documentation
Documentation
...
...
servers/slapd/overlays/syncprov.c
View file @
be5f314f
...
@@ -2323,6 +2323,15 @@ no_change: if ( !(op->o_sync_mode & SLAP_SYNC_PERSIST) ) {
...
@@ -2323,6 +2323,15 @@ no_change: if ( !(op->o_sync_mode & SLAP_SYNC_PERSIST) ) {
send_ldap_error
(
op
,
rs
,
LDAP_SYNC_REFRESH_REQUIRED
,
"sync cookie is stale"
);
send_ldap_error
(
op
,
rs
,
LDAP_SYNC_REFRESH_REQUIRED
,
"sync cookie is stale"
);
return
rs
->
sr_err
;
return
rs
->
sr_err
;
}
}
if
(
srs
->
sr_state
.
ctxcsn
)
{
ber_bvarray_free_x
(
srs
->
sr_state
.
ctxcsn
,
op
->
o_tmpmemctx
);
srs
->
sr_state
.
ctxcsn
=
NULL
;
}
if
(
srs
->
sr_state
.
sids
)
{
slap_sl_free
(
srs
->
sr_state
.
sids
,
op
->
o_tmpmemctx
);
srs
->
sr_state
.
sids
=
NULL
;
}
srs
->
sr_state
.
numcsns
=
0
;
}
else
{
}
else
{
gotstate
=
1
;
gotstate
=
1
;
/* If changed and doing Present lookup, send Present UUIDs */
/* If changed and doing Present lookup, send Present UUIDs */
...
...
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