diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 5ff161fa..6c7bd369 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -361,8 +361,14 @@ process_block( struct proto *p, struct rip_block *block, ip_addr whotoldme ) ip_addr network = block->network; CHK_MAGIC; +#ifdef IPV6 + TRACE(D_ROUTES, "block: %I tells me: %I/%d available, metric %d... ", + whotoldme, network, block->pxlen, metric ); +#else TRACE(D_ROUTES, "block: %I tells me: %I/%d available, metric %d... ", whotoldme, network, ipa_mklen(block->netmask), metric ); +#endif + if ((!metric) || (metric > P_CF->infinity)) { #ifdef IPV6 /* Someone is sedning us nexthop and we are ignoring it */ if (metric == 0xff)