diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-14 16:02:18 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-09-14 16:03:37 -0400 |
| commit | 2026b8afac05993a3823dd5b33f4024d20a72ff0 (patch) | |
| tree | 894554079b70ee76ba4484a9d3537e6c7bae5691 | |
| parent | ab0f1135b542d63df2eece36315d5592c8ec2cce (diff) | |
ospf6d: Fix the cli parsing
We were not properly positioning get_argv command.
Fixes: #1182
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
| -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 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; |
