Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
b08a6874
Commit
b08a6874
authored
Dec 21, 2005
by
Kurt Zeilenga
Browse files
Fixed slapo-dynlist/dyngroup nonexistant object return code (ITS#4224)
parent
4da9a9eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
b08a6874
...
...
@@ -21,11 +21,12 @@ OpenLDAP 2.3.14 Engineering
Fixed slapd-ldap anonymous identity assertion (ITS#4272)
Added slapd-ldap/meta idle-timeout support (ITS#4115)
Fixed slapd-meta bind-timeout handling (ITS#xxxx)
Fixed slapo-dynlist/dyngroup nonexistant object return code (ITS#4224)
Updated slapo-dynlist (ITS#3756,3781)
Fixed slapo-rwm static DN free bug (ITS#4248)
Fixed slapo-syncprov unpublished control (ITS#4238)
Fixed slapo-syncprov message id issue
Fixed slapo-unique extraneous searches (ITS#4267)
Updated slapo-dynlist (ITS#3756,3781,4224)
Build environment
Fixed thread dependency of test028 (ITS#4141)
Updated test033-glue-syncrepl (ITS#4264)
...
...
servers/slapd/overlays/dyngroup.c
View file @
b08a6874
...
...
@@ -67,8 +67,15 @@ dyngroup_response( Operation *op, SlapReply *rs )
rs
->
sr_err
=
backend_group
(
op
,
NULL
,
&
op
->
o_req_ndn
,
&
op
->
oq_compare
.
rs_ava
->
aa_value
,
NULL
,
ap
->
ap_uri
);
op
->
o_do_not_cache
=
cache
;
if
(
rs
->
sr_err
==
LDAP_SUCCESS
)
switch
(
rs
->
sr_err
)
{
case
LDAP_SUCCESS
:
rs
->
sr_err
=
LDAP_COMPARE_TRUE
;
break
;
case
LDAP_NO_SUCH_OBJECT
:
rs
->
sr_err
=
LDAP_COMPARE_FALSE
;
break
;
}
break
;
}
}
...
...
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