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
feb5ac94
Commit
feb5ac94
authored
Sep 03, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5650
parent
c099832e
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
feb5ac94
...
...
@@ -10,6 +10,7 @@ OpenLDAP 2.4.12 Engineering
Fixed slapd overlay control registration (ITS#5649)
Fixed slapd socket closing on Windows (ITS#5606)
Fixed slapd syncrepl error logging (ITS#5618)
Fixed slapd-bdb entry return if attr not present (ITS#5650)
Fixed slapd-ldap,slapd-meta invalid filter behavior (ITS#5614)
Fixed slapd-meta quarantine behavior (ITS#5592)
Fixed slapd-meta objectClass filtering (ITS#5647)
...
...
servers/slapd/back-bdb/id2entry.c
View file @
feb5ac94
...
...
@@ -401,6 +401,15 @@ dn2entry_retry:
goto
return_results
;
}
/* NOTE: attr_find() or attrs_find()? */
if
(
at
&&
attr_find
(
e
->
e_attrs
,
at
)
==
NULL
)
{
Debug
(
LDAP_DEBUG_ACL
,
"<= bdb_entry_get: failed to find attribute %s
\n
"
,
at
->
ad_cname
.
bv_val
,
0
,
0
);
rc
=
LDAP_NO_SUCH_ATTRIBUTE
;
goto
return_results
;
}
return_results:
if
(
rc
!=
LDAP_SUCCESS
)
{
/* free entry */
...
...
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