From 85bfecc0bae35ffe176d7c20dde7188594477787 Mon Sep 17 00:00:00 2001 From: Robin Roevens Date: Wed, 17 Aug 2022 14:58:48 +0200 Subject: [PATCH] Fix bug 12908 - Correct getipstat pcount --- src/misc-progs/getipstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc-progs/getipstat.c b/src/misc-progs/getipstat.c index 66d5b5a925..c4c7faf75d 100644 --- a/src/misc-progs/getipstat.c +++ b/src/misc-progs/getipstat.c @@ -29,7 +29,7 @@ int main(int argc, char** argv) // argument. char *args[] = {"--list", "--verbose", "--numeric", "--wait", "5", NULL, NULL, NULL, NULL}; char *usage = "getipstat [-x][-f|-n|-m]"; - unsigned int pcount = 6; + unsigned int pcount = 5; unsigned int table_set = 0; int opt; -- 2.39.2