mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-05 22:50:51 -05:00
Fix previous idl_find patch. Cannot test <=0 with unsigned ints, duh...
This commit is contained in:
parent
6cc6a187da
commit
00a28378f8
1 changed files with 1 additions and 1 deletions
|
|
@ -306,7 +306,7 @@ idl_find(
|
|||
ID id
|
||||
)
|
||||
{
|
||||
unsigned int lo=0, hi=ID_BLOCK_NIDS(b)-1, nr;
|
||||
int lo=0, hi=ID_BLOCK_NIDS(b)-1, nr;
|
||||
|
||||
for (;lo<=hi;)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue