Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
a6637eac
Commit
a6637eac
authored
May 19, 2015
by
Howard Chu
Committed by
Quanah Gibson-Mount
May 27, 2015
Browse files
ITS#8146 fix off-by-1 in prev commit
parent
122afcff
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-mdb/filterindex.c
View file @
a6637eac
...
...
@@ -216,7 +216,7 @@ mdb_filter_candidates(
ID
last
;
if
(
mdb
->
mi_nextid
)
{
last
=
mdb
->
mi_nextid
-
1
;
last
=
mdb
->
mi_nextid
;
}
else
{
MDB_cursor
*
mc
;
MDB_val
key
;
...
...
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