diff options
| author | Stephen Worley <sworley@cumulusnetworks.com> | 2020-05-19 13:58:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-19 13:58:48 -0400 |
| commit | 3dab0aea06d98bcc6192743c747d31afa67f68d1 (patch) | |
| tree | b7dd0137747861035b785832ef41732b7b46d871 /zebra/zebra_l2.c | |
| parent | e3ad2197e34ebd969182d0758b8be5ae882a8ff7 (diff) | |
| parent | 1f7a68a2ff0ba1424131f30112e0cc1572f0bee3 (diff) | |
Merge pull request #6426 from pguibert6WIND/update_ifname_before_hook
Update ifname before hook
Diffstat (limited to 'zebra/zebra_l2.c')
| -rw-r--r-- | zebra/zebra_l2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_l2.c b/zebra/zebra_l2.c index a214494492..4c0cc62fbf 100644 --- a/zebra/zebra_l2.c +++ b/zebra/zebra_l2.c @@ -119,7 +119,7 @@ void zebra_l2_map_slave_to_bond(struct zebra_l2info_bondslave *bond_slave, bond_slave->bond_if = bond_if; else bond_slave->bond_if = if_create_ifindex(bond_slave->bond_ifindex, - vrf_id); + vrf_id, NULL); } void zebra_l2_unmap_slave_from_bond(struct zebra_l2info_bondslave *bond_slave) |
