From 7405f23cd7574d7141daf9ec9cc2a5186da12bd1 Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Wed, 24 Feb 2010 15:54:24 +0000 Subject: [PATCH] Use the DB_SHOW_ALL_COMMAND() macro to register the formerly 'show ifnets' in the db_show_all_table as 'show all ifnets' and with that follow the convention for showing complete lists. Submitted by: thompsa MFC after: 3 days --- sys/net/if.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/net/if.c b/sys/net/if.c index 9413da46e25e..38b1d5013eb9 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -3389,7 +3389,7 @@ DB_SHOW_COMMAND(ifnet, db_show_ifnet) if_show_ifnet((struct ifnet *)addr); } -DB_SHOW_COMMAND(ifnets, db_show_ifnets) +DB_SHOW_ALL_COMMAND(ifnets, db_show_all_ifnets) { VNET_ITERATOR_DECL(vnet_iter); struct ifnet *ifp;