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
bb052a98
Commit
bb052a98
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5791
parent
1d9cc9e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
bb052a98
...
...
@@ -29,6 +29,7 @@ OpenLDAP 2.4.13 Engineering
Added slapd-bdb/hdb dbpagesize keyword
Added slapd-bdb/hdb checksum keyword
Fixed slapd-bdb/hdb indexing of entryDN (ITS#5790)
Fixed slapd-bdb/hdb lookup of entryDN with equality (ITS#5791)
Fixed slapd-ldap snprintf buffer overflow test (ITS#4467)
Fixed slapd-ldif file rename on windows (ITS#5774)
Fixed slapd-null read controls support (ITS#5757)
...
...
servers/slapd/back-bdb/filterindex.c
View file @
bb052a98
...
...
@@ -717,6 +717,16 @@ equality_candidates(
Debug
(
LDAP_DEBUG_TRACE
,
"=> bdb_equality_candidates (%s)
\n
"
,
ava
->
aa_desc
->
ad_cname
.
bv_val
,
0
,
0
);
if
(
ava
->
aa_desc
==
slap_schema
.
si_ad_entryDN
)
{
EntryInfo
*
ei
=
NULL
;
rc
=
bdb_cache_find_ndn
(
op
,
rtxn
,
&
ava
->
aa_value
,
&
ei
);
if
(
rc
==
LDAP_SUCCESS
)
bdb_idl_insert
(
ids
,
ei
->
bei_id
);
if
(
ei
)
bdb_cache_entryinfo_unlock
(
ei
);
return
rc
;
}
BDB_IDL_ALL
(
bdb
,
ids
);
rc
=
bdb_index_param
(
op
->
o_bd
,
ava
->
aa_desc
,
LDAP_FILTER_EQUALITY
,
...
...
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