From e7ef3e9494fe7d560cdc77cf996b468276eb09ed Mon Sep 17 00:00:00 2001 From: Roman Kurakin Date: Sat, 27 Sep 2008 15:58:54 +0000 Subject: [PATCH] Fix the build. Noted by: ganbold@ --- sbin/ipfw/ipfw2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/ipfw/ipfw2.c b/sbin/ipfw/ipfw2.c index d0cdb558941c..d7e60a64cdd3 100644 --- a/sbin/ipfw/ipfw2.c +++ b/sbin/ipfw/ipfw2.c @@ -5966,7 +5966,7 @@ table_handler(int ac, char *av[]) } else if (_substrcmp(*av, "list") == 0) { a = is_all ? tables_max : (ent.tbl + 1); do { - table_list(ent); + table_list(ent, is_all); } while (++ent.tbl < a); } else errx(EX_USAGE, "invalid table command %s", *av);