Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shawn McKinney
OpenLDAP
Commits
5d03f07f
Commit
5d03f07f
authored
Mar 03, 2000
by
Kurt Zeilenga
Browse files
Bind should never return No Such Object.
parent
6ff85ccf
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
5d03f07f
...
...
@@ -6,6 +6,7 @@ Changes included in OpenLDAP 1.2.10 Release Engineering
undefined object classes implies extensible object behavior.
Changed -lldap to ignore space in filter: ( !(foo=bar)) (ITS#459)
Fixed multiple password support (ITS#464)
Fixed back-ldbm/bind invalid credentials vs no such object bug
Build Environment
Do not list unsupported LDBM API option NDBM
...
...
servers/slapd/back-ldbm/bind.c
View file @
5d03f07f
...
...
@@ -98,7 +98,8 @@ ldbm_back_bind(
*
edn
=
ch_strdup
(
be_root_dn
(
be
)
);
rc
=
0
;
}
else
{
send_ldap_result
(
conn
,
op
,
LDAP_NO_SUCH_OBJECT
,
matched
,
NULL
);
send_ldap_result
(
conn
,
op
,
LDAP_INVALID_CREDENTIALS
,
NULL
,
NULL
);
rc
=
1
;
}
if
(
matched
!=
NULL
)
{
...
...
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