port to 64bit.

git-svn-id: file:///svn/unbound/trunk@1356 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2008-11-18 09:14:24 +00:00
parent bbbbb3c533
commit 8bc54c4380
2 changed files with 1 additions and 1 deletions

View file

@ -1,5 +1,6 @@
18 November 2008: Wouter
- iana portlist updated.
- removed cast in unit test debug print that was not 64bit safe.
17 November 2008: Wouter
- theoretical fix for problems reported on mailing list.

View file

@ -58,7 +58,6 @@ static void print_neg_cache(struct val_neg_cache* neg)
printf("neg_cache print\n");
printf("memuse %d of %d\n", (int)neg->use, (int)neg->max);
printf("maxiter %d\n", (int)neg->nsec3_max_iter);
printf("first=%x last=%x\n", (unsigned)neg->first, (unsigned)neg->last);
printf("%d zones\n", (int)neg->tree.count);
RBTREE_FOR(z, struct val_neg_zone*, &neg->tree) {
dname_str(z->name, buf);