summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_interface.c
diff options
context:
space:
mode:
authorgithub login name <ranjany@vmware.com>2020-09-28 03:48:37 -0700
committerYash Ranjan <ranjany@vmware.com>2020-11-04 22:44:21 -0800
commit6a5bb30062fbf80dfdfc254ccdec6b425680466f (patch)
treef1cbad9b8d8fcb1fc3df324d138e8286bc01e984 /ospf6d/ospf6_interface.c
parentdc7b85a2f954bab10c5d6b89a9ec75f609ef2a96 (diff)
ospf6d: Json support added for command "show ipv6 ospf6 neighbor [json]"
Modify code to add JSON format output in show command "show ipv6 ospf6 neighbor" with proper formating Signed-off-by: Yash Ranjan <ranjany@vmware.com>
Diffstat (limited to 'ospf6d/ospf6_interface.c')
-rw-r--r--ospf6d/ospf6_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c
index 75917b9d85..2d1b5e7b5a 100644
--- a/ospf6d/ospf6_interface.c
+++ b/ospf6d/ospf6_interface.c
@@ -996,7 +996,7 @@ static int ospf6_interface_show(struct vty *vty, struct interface *ifp)
(oi->thread_send_lsack ? "on" : "off"));
for (ALL_LSDB(oi->lsack_list, lsa, lsanext))
vty_out(vty, " %s\n", lsa->name);
- ospf6_bfd_show_info(vty, oi->bfd_info, 1);
+ ospf6_bfd_show_info(vty, oi->bfd_info, 1, NULL, false);
return 0;
}