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
5c429c8f
Commit
5c429c8f
authored
Jun 03, 2009
by
Quanah Gibson-Mount
Browse files
ITS#5328
parent
72bba9f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
5c429c8f
...
...
@@ -25,6 +25,7 @@ OpenLDAP 2.4.17 Engineering
Fixed slapd-hdb freeing of already freed entries (ITS#6074)
Fixed slapd-hdb entryinfo cleanup (ITS#6088)
Fixed slapd-hdb dncache lockups (ITS#6095)
Fixed slapd-relay to return failure on failure (ITS#5328)
Fixed slapd-sql with BACKSQL_ARBITRARY_KEY defined (ITS#6100)
Added slapo-rwm rwm-drop-unrequested-attrs config option (ITS#6057)
Fixed slapo-rwm dn passing (ITS#6070)
...
...
servers/slapd/back-relay/op.c
View file @
5c429c8f
...
...
@@ -457,15 +457,14 @@ relay_back_has_subordinates( Operation *op, Entry *e, int *hasSubs )
{
SlapReply
rs
=
{
0
};
BackendDB
*
bd
;
int
rc
=
1
;
int
rc
=
LDAP_OTHER
;
bd
=
relay_back_select_backend
(
op
,
&
rs
,
(
LDAP_SUCCESS
|
RB_ERR
)
);
bd
=
relay_back_select_backend
(
op
,
&
rs
,
LDAP_OTHER
);
/* FIXME: this test only works if there are no overlays, so
* it is nearly useless; if made stricter, no nested back-relays
* can be instantiated... too bad. */
if
(
bd
==
NULL
||
bd
==
op
->
o_bd
)
{
return
0
;
return
LDAP_OTHER
;
}
if
(
bd
->
be_has_subordinates
)
{
...
...
@@ -477,7 +476,6 @@ relay_back_has_subordinates( Operation *op, Entry *e, int *hasSubs )
}
return
rc
;
}
int
...
...
Write
Preview
Markdown
is supported
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