diff options
author | rik <rik@FreeBSD.org> | 2008-09-27 15:58:54 +0000 |
---|---|---|
committer | rik <rik@FreeBSD.org> | 2008-09-27 15:58:54 +0000 |
commit | 192de0a030310be59eed4c3d4ff26f1162ac0b74 (patch) | |
tree | 6091bfc9697d870ded10edaa7403defcd62e913c /sbin | |
parent | 802c3a101549b6fba5032c0e2cfe71891dfd8f21 (diff) | |
download | FreeBSD-src-192de0a030310be59eed4c3d4ff26f1162ac0b74.zip FreeBSD-src-192de0a030310be59eed4c3d4ff26f1162ac0b74.tar.gz |
Fix the build.
Noted by: ganbold@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ipfw/ipfw2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ipfw/ipfw2.c b/sbin/ipfw/ipfw2.c index d0cdb55..d7e60a6 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); |