From 2026b8afac05993a3823dd5b33f4024d20a72ff0 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Thu, 14 Sep 2017 16:02:18 -0400 Subject: [PATCH] ospf6d: Fix the cli parsing We were not properly positioning get_argv command. Fixes: #1182 Signed-off-by: Donald Sharp --- ospf6d/ospf6d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c index 84a56fb505..d28d9dd064 100644 --- a/ospf6d/ospf6d.c +++ b/ospf6d/ospf6d.c @@ -1098,7 +1098,7 @@ DEFUN (show_ipv6_ospf6_linkstate, "Specify Router ID as IPv4 address notation\n" "Specify Link state ID as IPv4 address notation\n") { - int idx_ipv4 = 4; + int idx_ipv4 = 5; struct listnode *node; struct ospf6_area *oa;