diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-14 22:02:18 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-14 22:03:37 +0200 |
commit | 2026b8afac05993a3823dd5b33f4024d20a72ff0 (patch) | |
tree | 894554079b70ee76ba4484a9d3537e6c7bae5691 /ospf6d | |
parent | ospf6d: Note when we calculated spf (diff) | |
download | frr-2026b8afac05993a3823dd5b33f4024d20a72ff0.tar.xz frr-2026b8afac05993a3823dd5b33f4024d20a72ff0.zip |
ospf6d: Fix the cli parsing
We were not properly positioning get_argv command.
Fixes: #1182
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6d.c b/ospf6d/ospf6d.c index 84a56fb50..d28d9dd06 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; |