diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-08-10 14:04:18 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-10 14:04:18 +0300 |
| commit | 9ad7e387be7d4745e8c12ab7ae73934d141828f8 (patch) | |
| tree | 37f38f28776515b241826582af021a723d0d2a3e /zebra/interface.c | |
| parent | ac2f410c379a8cef0abade46a2d2ef351b8f38a7 (diff) | |
| parent | db1c2223fde18824747355592c8a0f2504fa954b (diff) | |
Merge pull request #11768 from donaldsharp/multiple_connected_installs
zebra: Don't install connected routes multiple times into FRR
Diffstat (limited to 'zebra/interface.c')
| -rw-r--r-- | zebra/interface.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index b7a984e44d..205fa88293 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -848,10 +848,6 @@ void if_handle_vrf_change(struct interface *ifp, vrf_id_t vrf_id) /* Send out notification on interface VRF change. */ /* This is to issue an ADD, if needed. */ zebra_interface_vrf_update_add(ifp, old_vrf_id); - - /* Install connected routes (in new VRF). */ - if (if_is_operative(ifp)) - if_install_connected(ifp); } static void ipv6_ll_address_to_mac(struct in6_addr *address, uint8_t *mac) |
