From 73232f6b18222d73b38eae58e2c4c90062202709 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Tue, 30 May 2000 10:36:57 +0000 Subject: Better rt dumping. --- proto/ospf/ospf.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'proto/ospf/ospf.c') diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index f55bec8..7fff7ef 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -208,11 +208,12 @@ ospf_get_route_info(rte *rte, byte *buf, ea_list *attrs) met='1'; type='E'; } - //if(rte->u.ospf.type=='E') met='1'; if(rte->u.ospf.metric2!=0) met='2'; if(rte->attrs->source==RTS_OSPF_IA) type='A'; if(rte->attrs->source==RTS_OSPF) type='I'; - buf += bsprintf(buf, " %c%c %d", rte->u.ospf.type, met, + buf += bsprintf(buf, " %c", type); + if(met!=' ') buf += bsprintf(buf, "%c", met); + buf += bsprintf(buf, " (%d/%d)", rte->pref, (rte->u.ospf.metric2==0) ? rte->u.ospf.metric1 : rte->u.ospf.metric2); } -- cgit v1.2.3