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_vty.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_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index 688bc42c3d..862b2cc148 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -214,10 +214,10 @@ int pim_global_config_write_worker(struct pim_instance *pim, struct vty *vty) spaces); ++writes; } - if (qpim_ecmp_rebalance_enable) { + if (pim->ecmp_rebalance_enable) { vty_out(vty, "%sip pim ecmp rebalance\n", spaces); ++writes; - } else if (qpim_ecmp_enable) { + } else if (pim->ecmp_enable) { vty_out(vty, "%sip pim ecmp\n", spaces); ++writes; } |
