mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
port to 64bit.
git-svn-id: file:///svn/unbound/trunk@1356 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
bbbbb3c533
commit
8bc54c4380
2 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
18 November 2008: Wouter
|
18 November 2008: Wouter
|
||||||
- iana portlist updated.
|
- iana portlist updated.
|
||||||
|
- removed cast in unit test debug print that was not 64bit safe.
|
||||||
|
|
||||||
17 November 2008: Wouter
|
17 November 2008: Wouter
|
||||||
- theoretical fix for problems reported on mailing list.
|
- theoretical fix for problems reported on mailing list.
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,6 @@ static void print_neg_cache(struct val_neg_cache* neg)
|
||||||
printf("neg_cache print\n");
|
printf("neg_cache print\n");
|
||||||
printf("memuse %d of %d\n", (int)neg->use, (int)neg->max);
|
printf("memuse %d of %d\n", (int)neg->use, (int)neg->max);
|
||||||
printf("maxiter %d\n", (int)neg->nsec3_max_iter);
|
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);
|
printf("%d zones\n", (int)neg->tree.count);
|
||||||
RBTREE_FOR(z, struct val_neg_zone*, &neg->tree) {
|
RBTREE_FOR(z, struct val_neg_zone*, &neg->tree) {
|
||||||
dname_str(z->name, buf);
|
dname_str(z->name, buf);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue