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

Use '%I' instead of dirty address printing hacks.

This commit is contained in:
Martin Mares
1998-06-17 14:36:02 +00:00
parent d997534f65
commit 962ba482fd
3 changed files with 7 additions and 7 deletions

View File

@@ -144,9 +144,9 @@ rta_dump(rta *a)
debug(" EXT");
if (a->flags & RTF_TAGGED)
debug(" TAG");
debug(" <-%08x", _I(a->from));
debug(" <-%I", a->from);
if (a->dest == RTD_ROUTER)
debug(" ->%08x", _I(a->gw));
debug(" ->%I", a->gw);
if (a->dest == RTD_DEVICE || a->dest == RTD_ROUTER)
debug(" [%s]", a->iface->name);
}