From 432996f40fceb58cd5ee5026eb4f7018ef6af1ef Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Tue, 9 May 2000 12:03:57 +0000 Subject: Better dumping. --- proto/ospf/ospf.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'proto/ospf') diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index ef9c576..3b4af4f 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -35,11 +35,11 @@ ospf_dump(struct proto *p) { debug("%s: Interface: %s\n", p->name, ifa->iface->name); debug("%s: state: %u\n", p->name, ifa->state); - debug("%s: DR: %u\n", p->name, ifa->drid); - debug("%s: BDR: %u\n", p->name, ifa->bdrid); + debug("%s: DR: %I\n", p->name, ifa->drid); + debug("%s: BDR: %I\n", p->name, ifa->bdrid); WALK_LIST(n, ifa->neigh_list) { - debug("%s: neighbor %u in state %u\n", p->name, n->rid, n->state); + debug("%s: neighbor %I in state %u\n", p->name, n->rid, n->state); } } @@ -51,7 +51,6 @@ ospf_dump(struct proto *p) oa->areaid); } neigh_dump_all(); - } static struct proto * -- cgit v1.2.3