mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
Fix prev commit, use BDB_IDL_LAST()
This commit is contained in:
parent
1c2e20527e
commit
6411c57028
1 changed files with 1 additions and 1 deletions
|
|
@ -1264,7 +1264,7 @@ int bdb_idl_merge( ID *a, ID *b )
|
|||
if ( BDB_IDL_IS_RANGE( a ) || BDB_IDL_IS_RANGE(b) ||
|
||||
a[0] + b[0] >= BDB_IDL_UM_MAX ) {
|
||||
ida = IDL_MIN( a[1], b[1] );
|
||||
idb = IDL_MAX( a[a[0]], b[b[0]] );
|
||||
idb = IDL_MAX( BDB_IDL_LAST(a), BDB_IDL_LAST(b) );
|
||||
a[0] = NOID;
|
||||
a[1] = ida;
|
||||
a[2] = idb;
|
||||
|
|
|
|||
Loading…
Reference in a new issue