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
7ff822a0
Commit
7ff822a0
authored
Jan 04, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6774
parent
07a37a86
Changes
2
Show whitespace changes
Inline
Side-by-side
CHANGES
View file @
7ff822a0
...
...
@@ -64,6 +64,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapd-meta rebind proc (ITS#6665)
Fixed slapd-meta to correctly rebind as user (ITS#6574)
Fixed slapd-meta with SASL/EXTERNAL (ITS#6642)
Fixed slapd-meta matchedDN return code (ITS#6774)
Fixed slapd-monitor hasSubordinates generation (ITS#6712)
Fixed slapd-sql with null objectClass (ITS#6616)
Fixed slapd-sql hasSubordinates generation (ITS#6712)
...
...
servers/slapd/back-meta/search.c
View file @
7ff822a0
...
...
@@ -1916,7 +1916,7 @@ free_message:;
}
rs
->
sr_err
=
sres
;
rs
->
sr_matched
=
matched
;
rs
->
sr_matched
=
(
sres
==
LDAP_SUCCESS
?
NULL
:
matched
)
;
rs
->
sr_ref
=
(
sres
==
LDAP_REFERRAL
?
rs
->
sr_v2ref
:
NULL
);
send_ldap_result
(
op
,
rs
);
op
->
o_private
=
savepriv
;
...
...
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