Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joe Martin
OpenLDAP
Commits
be5f314f
Commit
be5f314f
authored
16 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
ITS#5564
parent
8f8da231
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+1
-0
1 addition, 0 deletions
CHANGES
servers/slapd/overlays/syncprov.c
+9
-0
9 additions, 0 deletions
servers/slapd/overlays/syncprov.c
with
10 additions
and
0 deletions
CHANGES
+
1
−
0
View file @
be5f314f
...
...
@@ -9,6 +9,7 @@ OpenLDAP 2.4.11 Engineering
Fixed slapo-pcache handling of negative search caches (ITS#5546)
Fixed slapo-ppolicy DNs with whitespaces (ITS#5552)
Fixed slapo-syncprov ACL evaluation (ITS#5548)
Fixed slapo-syncprov full reload (ITS#5564)
Build Environment
Fixed test048 to skip if threads is not available (ITS#5529)
Documentation
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/overlays/syncprov.c
+
9
−
0
View file @
be5f314f
...
...
@@ -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"
);
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
{
gotstate
=
1
;
/* If changed and doing Present lookup, send Present UUIDs */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment