Merge pull request #8831 from sworleys/Fix-No-Ospf-Func

ospf6d: fix undefined function
This commit is contained in:
Igor Ryzhov 2021-06-11 11:33:13 +03:00 committed by GitHub
commit 352cc841d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1640,7 +1640,7 @@ void ospf6_interface_start(struct ospf6_interface *oi)
ospf6_interface_enable(oi);
/* If the router is ABR, originate summary routes */
if (ospf6_is_router_abr(ospf6))
if (ospf6_check_and_set_router_abr(ospf6))
ospf6_abr_enable_area(oa);
}