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
Oren Tirosh
OpenLDAP
Commits
c0e6911d
Commit
c0e6911d
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
ITS#374: index presence filter bug fix.
parent
32190a29
No related branches found
Branches containing commit
Tags
OPENLDAP_REL_ENG_2_0_3
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+1
-3
1 addition, 3 deletions
CHANGES
servers/slapd/back-ldbm/filterindex.c
+1
-1
1 addition, 1 deletion
servers/slapd/back-ldbm/filterindex.c
with
2 additions
and
4 deletions
CHANGES
+
1
−
3
View file @
c0e6911d
OpenLDAP Change Log
OpenLDAP Change Log
Changes included in OpenLDAP 1.2.9 Engineering
CVS Tag: OPENLDAP_REL_ENG_1_2
Changes included in OpenLDAP 1.2.8
Changes included in OpenLDAP 1.2.8
CVS Tag: OPENLDAP_REL_ENG_1_2_8
CVS Tag: OPENLDAP_REL_ENG_1_2_8
Fixed slapd lint
Fixed slapd lint
...
@@ -12,6 +9,7 @@ Changes included in OpenLDAP 1.2.8
...
@@ -12,6 +9,7 @@ Changes included in OpenLDAP 1.2.8
Fixed lber/io.c Cray T90 specific pointer arithmetic problem (ITS#325)
Fixed lber/io.c Cray T90 specific pointer arithmetic problem (ITS#325)
Fixed s_addr dereferencing (ITS#340)
Fixed s_addr dereferencing (ITS#340)
Fixed ud strstr crash (ITS#328)
Fixed ud strstr crash (ITS#328)
Fixed back-ldbm presence index bug (ITS#394)
Fixed -lthread rdwr 2-writer bug (ITS#395)
Fixed -lthread rdwr 2-writer bug (ITS#395)
Added TCP_NODELAY support
Added TCP_NODELAY support
Changed slapd to apply ACL to lastmod attributes
Changed slapd to apply ACL to lastmod attributes
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/back-ldbm/filterindex.c
+
1
−
1
View file @
c0e6911d
...
@@ -132,7 +132,7 @@ presence_candidates(
...
@@ -132,7 +132,7 @@ presence_candidates(
Debug
(
LDAP_DEBUG_TRACE
,
"=> presence_candidates
\n
"
,
0
,
0
,
0
);
Debug
(
LDAP_DEBUG_TRACE
,
"=> presence_candidates
\n
"
,
0
,
0
,
0
);
idl
=
index_read
(
be
,
type
,
0
,
"*"
);
idl
=
index_read
(
be
,
type
,
INDEX_PRESENCE
,
"*"
);
Debug
(
LDAP_DEBUG_TRACE
,
"<= presence_candidates %lu
\n
"
,
Debug
(
LDAP_DEBUG_TRACE
,
"<= presence_candidates %lu
\n
"
,
idl
?
ID_BLOCK_NIDS
(
idl
)
:
0
,
0
,
0
);
idl
?
ID_BLOCK_NIDS
(
idl
)
:
0
,
0
,
0
);
...
...
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