From 65d08549c7cfa3a6290968f2cb483a665a833b07 Mon Sep 17 00:00:00 2001 From: diman Date: Mon, 8 Jan 2007 21:56:22 +0000 Subject: [PATCH] Hopefully final --iflist bug the routes are now displayed correctly --- output.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output.cc b/output.cc index c7389531e..bad18ac22 100644 --- a/output.cc +++ b/output.cc @@ -339,7 +339,7 @@ int print_iflist(void) { addr_mtob(&mask_nbo, sizeof(mask_nbo), &nbits); assert(nbits <= 32); ia.s_addr = routes[i].dest; - Tbl->addItemFormatted(i+1, dstcol, "%s/%d", inet_ntoa(ia), nbits); + Tbl->addItemFormatted(i+1, dstcol, false, "%s/%d", inet_ntoa(ia), nbits); Tbl->addItem(i+1, devcol, false, routes[i].device->devfullname); if (routes[i].gw.s_addr != 0) Tbl->addItem(i+1, gwcol, true, inet_ntoa(routes[i].gw));