X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ospf6d%2Fospf6_interface.c;h=21751656b418f9652ef457916af99456f062066a;hb=68fe91d6c7731fba199a7f4bd53e12a559e3b3de;hp=63783cc8f014925867644d860ffb2afcd0f4703c;hpb=89ca90fad972362d622c50883dc0d36314d002e5;p=mirror_frr.git diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 63783cc8f..21751656b 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -29,7 +29,6 @@ #include "prefix.h" #include "plist.h" #include "zclient.h" -#include "bfd.h" #include "ospf6_lsa.h" #include "ospf6_lsdb.h" @@ -263,7 +262,7 @@ ospf6_interface_delete (struct ospf6_interface *oi) if (oi->plist_name) XFREE (MTYPE_PREFIX_LIST_STR, oi->plist_name); - bfd_info_free(&(oi->bfd_info)); + ospf6_bfd_info_free(&(oi->bfd_info)); XFREE (MTYPE_OSPF6_IF, oi); } @@ -977,7 +976,7 @@ ospf6_interface_show (struct vty *vty, struct interface *ifp) for (lsa = ospf6_lsdb_head (oi->lsack_list); lsa; lsa = ospf6_lsdb_next (lsa)) vty_out (vty, " %s%s", lsa->name, VNL); - + ospf6_bfd_show_info(vty, oi->bfd_info, 1); return 0; }