Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoș Haiduc
OpenLDAP
Commits
bb052a98
Commit
bb052a98
authored
16 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
ITS#5791
parent
1d9cc9e0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+1
-0
1 addition, 0 deletions
CHANGES
servers/slapd/back-bdb/filterindex.c
+10
-0
10 additions, 0 deletions
servers/slapd/back-bdb/filterindex.c
with
11 additions
and
0 deletions
CHANGES
+
1
−
0
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)
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/back-bdb/filterindex.c
+
10
−
0
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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment