From e440395d7d3c503692321e2f6ec4e42bf758acb1 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 20 Dec 1998 14:01:37 +0000 Subject: [PATCH] When printing a routing table, fib_check() it. --- nest/rt-table.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nest/rt-table.c b/nest/rt-table.c index 386738c9..b35297bb 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -254,6 +254,9 @@ rt_dump(rtable *t) while (t) { debug("Routes for TOS %02x:\n", t->tos); +#ifdef DEBUGGING + fib_check(&t->fib); +#endif FIB_WALK(&t->fib, fn) { n = (net *) fn;