summaryrefslogtreecommitdiff
path: root/zebra/interface.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-04-05 12:49:17 -0400
committerGitHub <noreply@github.com>2017-04-05 12:49:17 -0400
commit096398104b4c223d7f6a90cae632a1b418799517 (patch)
tree73715073a44921ecdb95ab3f4ecd811f60b62d57 /zebra/interface.c
parent2aaa554de9535e9299519d82b11f55f12c808975 (diff)
parent6492ed5369a7bd833e8add952af35a3c9d7f2528 (diff)
Merge branch 'master' into pim_5549
Diffstat (limited to 'zebra/interface.c')
-rw-r--r--zebra/interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/interface.c b/zebra/interface.c
index e9c54a629b..1d015e8588 100644
--- a/zebra/interface.c
+++ b/zebra/interface.c
@@ -1056,8 +1056,8 @@ if_dump_vty (struct vty *vty, struct interface *ifp)
return;
}
- vty_out (vty, " index %d metric %d mtu %d ",
- ifp->ifindex, ifp->metric, ifp->mtu);
+ vty_out (vty, " index %d metric %d mtu %d speed %u ",
+ ifp->ifindex, ifp->metric, ifp->mtu, ifp->speed);
if (ifp->mtu6 != ifp->mtu)
vty_out (vty, "mtu6 %d ", ifp->mtu6);
vty_out (vty, "%s flags: %s%s", VTY_NEWLINE,