summaryrefslogtreecommitdiffstats
path: root/nest/rt-table.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-06-17 16:36:02 +0200
committerMartin Mares <mj@ucw.cz>1998-06-17 16:36:02 +0200
commit962ba482fd7bba97cf13a96105503efff4dcb88a (patch)
tree78a9b7a31077b3c311710f56afa4572c4eaeb582 /nest/rt-table.c
parentd997534f65903e8078efe2f8ceb19941692598f7 (diff)
downloadbird-962ba482fd7bba97cf13a96105503efff4dcb88a.tar
bird-962ba482fd7bba97cf13a96105503efff4dcb88a.zip
Use '%I' instead of dirty address printing hacks.
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index 249cbbf..a45b58d 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -185,7 +185,7 @@ void
rte_dump(net *n, rte *e)
{
if (n)
- debug("%08x/%2d ", _I(n->n.prefix), n->n.pxlen);
+ debug("%1I/%2d ", n->n.prefix, n->n.pxlen);
debug("PF=%02x pref=%d lm=%d ", e->pflags, e->pref, e->lastmod);
rta_dump(e->attrs);
if (e->flags & REF_CHOSEN)