mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-11 23:03:21 -05:00
ITS#8146 fix off-by-1 in prev commit
This commit is contained in:
parent
117edd79ce
commit
3f119767f7
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue