mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-01-06 06:49:35 -05:00
fp fix.
git-svn-id: file:///svn/unbound/trunk@259 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
b383ddfad9
commit
f4ee65daa5
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,6 @@
|
|||
26 April 2007: Wouter
|
||||
- floating point exception fix in lock-verify.
|
||||
|
||||
25 April 2007: Wouter
|
||||
- prettier code; parse_rrset->type kept in host byte order.
|
||||
- datatype used for hashvalue of converted rrsig structure.
|
||||
|
|
|
|||
|
|
@ -380,7 +380,8 @@ static void check_order(rbtree_t* all_locks)
|
|||
i, (int)all_locks->count,
|
||||
lock->id.thr, lock->id.instance,
|
||||
lock->create_file, lock->create_line);
|
||||
else if (i % (all_locks->count/75) == 0)
|
||||
else if (i % ((all_locks->count/75)<1?1:all_locks->count/75)
|
||||
== 0)
|
||||
fprintf(stderr, ".");
|
||||
i++;
|
||||
check_order_lock(lock);
|
||||
|
|
|
|||
Loading…
Reference in a new issue