diff options
author | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-09-30 15:38:08 +0200 |
---|---|---|
committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-09-30 15:38:08 +0200 |
commit | 093d7a3a3413250e8328abebd372bb695f874ca8 (patch) | |
tree | 54d7c5e1912c16b80279b3d5b5439d539574f062 /ospf6d/ospf6_route.c | |
parent | ospf6d: scrubbed some argc CHECK MEs (diff) | |
download | frr-093d7a3a3413250e8328abebd372bb695f874ca8.tar.xz frr-093d7a3a3413250e8328abebd372bb695f874ca8.zip |
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 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ospf6d/ospf6_route.c b/ospf6d/ospf6_route.c index 58bb2fc80..3263f4a06 100644 --- a/ospf6d/ospf6_route.c +++ b/ospf6d/ospf6_route.c @@ -1473,7 +1473,8 @@ ospf6_linkstate_show_table (struct vty *vty, int detail, } int -ospf6_linkstate_table_show (struct vty *vty, int argc, struct cmd_token **argv, +ospf6_linkstate_table_show (struct vty *vty, int idx_ipv4, int argc, + struct cmd_token **argv, struct ospf6_route_table *table) { int detail = 0; @@ -1486,7 +1487,7 @@ ospf6_linkstate_table_show (struct vty *vty, int argc, struct cmd_token **argv, memset (&id, 0, sizeof (struct prefix)); memset (&prefix, 0, sizeof (struct prefix)); - for (i = 0; i < argc; i++) + for (i = idx_ipv4; i < argc; i++) { if (! strcmp (argv[i]->arg, "detail")) { |