git-svn-id: file:///svn/unbound/trunk@259 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2007-04-26 07:33:29 +00:00
parent b383ddfad9
commit f4ee65daa5
2 changed files with 5 additions and 1 deletions

View file

@ -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.

View file

@ -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);