Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
89a94702
Commit
89a94702
authored
Apr 15, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6469
parent
5bf7c9a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
89a94702
...
...
@@ -9,6 +9,7 @@ OpenLDAP 2.4.22 Engineering
Fixed slapd empty URI parsing (ITS#6465)
Fixed slapd REP_ENTRY flag handling (ITS#5340)
Fixed slapd sasl auxprop_lookup (ITS#6441)
Fixed slapd-bdb contextCSN updates from updatedn (ITS#6469)
Fixed slapo-collect REP_ENTRY flag handling (ITS#5340,ITS#6423)
Fixed slapo-dynlist REP_ENTRY flag handling (ITS#5340,ITS#6423)
Fixed slapo-rwm olcRwmMap handling (ITS#6436)
...
...
servers/slapd/back-bdb/modify.c
View file @
89a94702
...
...
@@ -422,7 +422,13 @@ txnReturn:
ctrls
[
num_ctrls
]
=
NULL
;
slap_mods_opattrs
(
op
,
&
op
->
orm_modlist
,
1
);
/* Don't touch the opattrs, if this is a contextCSN update
* initiated from updatedn */
if
(
!
be_isupdate
(
op
)
||
!
op
->
orm_modlist
||
op
->
orm_modlist
->
sml_next
||
op
->
orm_modlist
->
sml_desc
!=
slap_schema
.
si_ad_contextCSN
)
{
slap_mods_opattrs
(
op
,
&
op
->
orm_modlist
,
1
);
}
if
(
0
)
{
retry:
/* transaction retry */
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment