diff options
| author | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-09-30 01:27:05 +0000 |
|---|---|---|
| committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-09-30 01:27:05 +0000 |
| commit | 1d68dbfe66479d81a570d8d4aa2d0f0d7ba57184 (patch) | |
| tree | 86e24c95b6a508cdf97bdabac318d4e5e017418e /ospf6d/ospf6_route.c | |
| parent | 58749582a9a2c5930d907d88a3ad0d0c5c24f627 (diff) | |
ospf6d: scrubbed some argc CHECK MEs
Signed-off-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_route.c')
| -rw-r--r-- | ospf6d/ospf6_route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_route.c b/ospf6d/ospf6_route.c index bc4c951f13..58bb2fc80b 100644 --- a/ospf6d/ospf6_route.c +++ b/ospf6d/ospf6_route.c @@ -1298,7 +1298,7 @@ ospf6_route_show_table (struct vty *vty, int detail, } int -ospf6_route_table_show (struct vty *vty, int argc, struct cmd_token **argv, +ospf6_route_table_show (struct vty *vty, int argc_start, int argc, struct cmd_token **argv, struct ospf6_route_table *table) { int summary = 0; @@ -1312,7 +1312,7 @@ ospf6_route_table_show (struct vty *vty, int argc, struct cmd_token **argv, memset (&prefix, 0, sizeof (struct prefix)); - for (i = 0; i < argc; i++) + for (i = argc_start; i < argc; i++) { if (! strcmp (argv[i]->arg, "summary")) { |
