diff options
| author | Philippe Guibert <philippe.guibert@6wind.com> | 2020-05-19 12:57:08 +0100 |
|---|---|---|
| committer | Philippe Guibert <philippe.guibert@6wind.com> | 2020-05-19 16:02:12 +0200 |
| commit | 1f7a68a2ff0ba1424131f30112e0cc1572f0bee3 (patch) | |
| tree | 206d974454a96d215213a62a41f4589b1f603d42 /zebra/zebra_l2.c | |
| parent | b575f58bb0ffae3ad67a8f1b6bd09760c310c1cc (diff) | |
lib, zebra: update interface name at netlink creation
the interface name was not present in the hook in charge of updating the
interface context to the registered hook service. For that, update the
name before informing it.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
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 e549d80a5c..e67b5cddb4 100644 --- a/zebra/zebra_l2.c +++ b/zebra/zebra_l2.c @@ -110,7 +110,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) |
