]> git.proxmox.com Git - mirror_frr.git/commitdiff
ospf6d: fix undefined function
authorStephen Worley <sworley@nvidia.com>
Thu, 10 Jun 2021 21:39:56 +0000 (17:39 -0400)
committerStephen Worley <sworley@nvidia.com>
Thu, 10 Jun 2021 21:39:56 +0000 (17:39 -0400)
Some wires got crossed during a couple merges using/changing
this function.

Update it to its new name.

Signed-off-by: Stephen Worley <sworley@nvidia.com>
ospf6d/ospf6_interface.c

index 148f2dc50dedfdeebe2925c3b879d89679e2eba7..952c7f8b27afe35847d990a9683eb0003e867d12 100644 (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);
 }