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
d9c80f55
Commit
d9c80f55
authored
Jan 30, 2009
by
Quanah Gibson-Mount
Browse files
ITS#5898
parent
54c1f469
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
d9c80f55
...
...
@@ -36,6 +36,7 @@ OpenLDAP 2.4.14 Engineering
Fixed slapd-ldif numerous bugs (ITS#5408)
Fixed slapd-ldif rename on same DN (ITS#5319)
Fixed slapd-ldif deadlock (ITS#5329)
Fixed slapo-dynlist handling of flags (ITS#5898)
Fixed slapo-memberof multiple instantiation (ITS#5903)
Fixed slapd-meta double response sending (ITS#5854)
Fixed slapd-meta alias deref for retry (ITS#5889)
...
...
servers/slapd/overlays/dynlist.c
View file @
d9c80f55
...
...
@@ -452,12 +452,13 @@ dynlist_prepare_entry( Operation *op, SlapReply *rs, dynlist_info_t *dli )
o
.
o_groups
=
NULL
;
}
e_flags
=
rs
->
sr_flags
;
if
(
!
(
rs
->
sr_flags
&
REP_ENTRY_MODIFIABLE
)
)
{
e
=
entry_dup
(
rs
->
sr_entry
);
e_flags
|=
(
REP_ENTRY_MODIFIABLE
|
REP_ENTRY_MUSTBEFREED
);
}
else
{
e
=
rs
->
sr_entry
;
}
e_flags
=
rs
->
sr_flags
|
(
REP_ENTRY_MODIFIABLE
|
REP_ENTRY_MUSTBEFREED
);
dlc
.
dlc_e
=
e
;
dlc
.
dlc_dli
=
dli
;
...
...
@@ -855,6 +856,8 @@ done:;
if
(
r
.
sr_flags
&
REP_ENTRY_MUSTBEFREED
)
{
entry_free
(
r
.
sr_entry
);
r
.
sr_entry
=
NULL
;
r
.
sr_flags
^=
REP_ENTRY_MUSTBEFREED
;
}
}
...
...
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