diff options
| author | Russ White <russ@riw.us> | 2018-06-08 07:06:19 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-08 07:06:19 -0400 |
| commit | e78f9d0137e4f0fa783e282bae9bad15d5bd3ec2 (patch) | |
| tree | c8a34e9958554c39de777fe3682be317e4c3e96f /pimd/pim_instance.c | |
| parent | c4a81cae7e9838925c52dffa80478239e1951bd5 (diff) | |
| parent | 4795fff748d6b55479b60013fd2dc8fdf8b4c7c2 (diff) | |
Merge pull request #2380 from donaldsharp/pim_stuff
pimd: Fix ecmp_enable and ecmp_rebalance_enable
Diffstat (limited to 'pimd/pim_instance.c')
| -rw-r--r-- | pimd/pim_instance.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pimd/pim_instance.c b/pimd/pim_instance.c index 7e5bb34e31..cb70ee7904 100644 --- a/pimd/pim_instance.c +++ b/pimd/pim_instance.c @@ -77,6 +77,8 @@ static struct pim_instance *pim_instance_init(struct vrf *vrf) pim->keep_alive_time = PIM_KEEPALIVE_PERIOD; pim->rp_keep_alive_time = PIM_RP_KEEPALIVE_PERIOD; + pim->ecmp_enable = false; + pim->ecmp_rebalance_enable = false; pim->vrf_id = vrf->vrf_id; pim->vrf = vrf; |
