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
5e26acda
Commit
5e26acda
authored
Jan 04, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6670
parent
3635dc43
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
5e26acda
...
...
@@ -68,6 +68,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapo-dynlist callbacks (ITS#6752)
Fixed slapo-dynlist entry handling (ITS#6752)
Fixed slapo-memberof log messages (ITS#6748)
Fixed slapo-memberof with an empty groupOfNames (ITS#6670)
Fixed slapo-pcache callback freeing (ITS#6640)
Fixed slapo-pcache to ignore undefined attrs (ITS#6600)
Fixed slapo-ppolicy don't update opattrs on consumers (ITS#6608)
...
...
servers/slapd/overlays/memberof.c
View file @
5e26acda
...
...
@@ -537,6 +537,10 @@ memberof_op_add( Operation *op, SlapReply *rs )
for
(
i
=
0
;
!
BER_BVISNULL
(
&
a
->
a_nvals
[
i
]
);
i
++
)
{
Entry
*
e
=
NULL
;
/* ITS#6670 Ignore member pointing to this entry */
if
(
dn_match
(
&
a
->
a_nvals
[
i
],
&
save_ndn
))
continue
;
rc
=
be_entry_get_rw
(
op
,
&
a
->
a_nvals
[
i
],
NULL
,
NULL
,
0
,
&
e
);
if
(
rc
==
LDAP_SUCCESS
)
{
...
...
@@ -615,6 +619,10 @@ memberof_op_add( Operation *op, SlapReply *rs )
send_ldap_result
(
op
,
rs
);
goto
done
;
}
/* ITS#6670 Ignore member pointing to this entry */
if
(
dn_match
(
&
a
->
a_nvals
[
i
],
&
save_ndn
))
continue
;
rc
=
be_entry_get_rw
(
op
,
&
a
->
a_nvals
[
i
],
NULL
,
NULL
,
0
,
&
e
);
op
->
o_bd
->
bd_info
=
(
BackendInfo
*
)
on
;
...
...
@@ -822,6 +830,10 @@ memberof_op_modify( Operation *op, SlapReply *rs )
int
rc
;
Entry
*
e
;
/* ITS#6670 Ignore member pointing to this entry */
if
(
dn_match
(
&
ml
->
sml_nvalues
[
i
],
&
save_ndn
))
continue
;
if
(
be_entry_get_rw
(
op
,
&
ml
->
sml_nvalues
[
i
],
NULL
,
NULL
,
0
,
&
e
)
==
LDAP_SUCCESS
)
{
...
...
@@ -1033,6 +1045,10 @@ memberof_op_modify( Operation *op, SlapReply *rs )
goto
done2
;
}
/* ITS#6670 Ignore member pointing to this entry */
if
(
dn_match
(
&
ml
->
sml_nvalues
[
i
],
&
save_ndn
))
continue
;
rc
=
be_entry_get_rw
(
op
,
&
ml
->
sml_nvalues
[
i
],
NULL
,
NULL
,
0
,
&
e
);
op
->
o_bd
->
bd_info
=
(
BackendInfo
*
)
on
;
...
...
@@ -1194,6 +1210,10 @@ memberof_res_add( Operation *op, SlapReply *rs )
for
(
i
=
0
;
!
BER_BVISNULL
(
&
ma
->
a_nvals
[
i
]
);
i
++
)
{
/* ITS#6670 Ignore member pointing to this entry */
if
(
dn_match
(
&
ma
->
a_nvals
[
i
],
&
op
->
o_req_ndn
))
continue
;
/* the modification is attempted
* with the original identity */
(
void
)
memberof_value_modify
(
op
,
rs
,
...
...
@@ -1211,6 +1231,10 @@ memberof_res_add( Operation *op, SlapReply *rs )
a
=
attrs_find
(
a
->
a_next
,
mo
->
mo_ad_member
)
)
{
for
(
i
=
0
;
!
BER_BVISNULL
(
&
a
->
a_nvals
[
i
]
);
i
++
)
{
/* ITS#6670 Ignore member pointing to this entry */
if
(
dn_match
(
&
a
->
a_nvals
[
i
],
&
op
->
o_req_ndn
))
continue
;
(
void
)
memberof_value_modify
(
op
,
rs
,
&
a
->
a_nvals
[
i
],
mo
->
mo_ad_memberof
,
...
...
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