1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

fixes some 64-bit related bugs.

Filter code used 'aux' integer field of 'symbol' struct to store ptr
to next symbol and both 'aux2' and 'def' fields for value.
Changed to just 'def' for value and 'aux2' for ptr to next symbol.
Also another minor bugfix.
This commit is contained in:
Ondrej Zajicek
2008-12-25 11:55:27 +01:00
parent 165a622727
commit 083c43e22e
4 changed files with 27 additions and 25 deletions

View File

@@ -165,8 +165,8 @@ rdump(void *res)
char x[16];
resource *r = res;
bsprintf(x, "%%%ds%%08x ", indent);
debug(x, "", (int) r);
bsprintf(x, "%%%ds%%p ", indent);
debug(x, "", r);
if (r)
{
debug("%s ", r->class->name);