diff options
author | ckishimo <carles.kishimoto@gmail.com> | 2022-02-01 00:34:34 +0100 |
---|---|---|
committer | ckishimo <carles.kishimoto@gmail.com> | 2022-02-01 08:51:34 +0100 |
commit | e9b0752f111c73c5aec99d4332a5e6604866b9fb (patch) | |
tree | 90068064df2096bcaff4c75d9706b3958ffbe12c /ospfd | |
parent | ospfd: print maximum paths in show ip ospf json (diff) | |
download | frr-e9b0752f111c73c5aec99d4332a5e6604866b9fb.tar.xz frr-e9b0752f111c73c5aec99d4332a5e6604866b9fb.zip |
ospfd: remove extra space
Signed-off-by: ckishimo <carles.kishimoto@gmail.com>
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_vty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 33b51d4c0..ce91b32af 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -3301,7 +3301,7 @@ static int show_ip_ospf_common(struct vty *vty, struct ospf *ospf, ospf->lsa_refresh_interval); /* show max multipath */ - vty_out(vty, " Maximum multiple paths(ECMP) supported %d\n", + vty_out(vty, " Maximum multiple paths(ECMP) supported %d\n", ospf->max_multipath); /* show administrative distance */ |