diff options
| author | David Lamparter <equinox@diac24.net> | 2017-04-04 15:58:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-04 15:58:11 +0200 |
| commit | 2e310ba9c3899eef7a7b1db78bb7fcde3741af57 (patch) | |
| tree | f9d5c9d1e994c36f03d3642bceb7b27a130615fe /zebra/interface.c | |
| parent | 3e11c0078956b1baa5d7c6cd1e65559c3f1793df (diff) | |
| parent | 97d2cd8d0c54279407cef16f070231912ef85a00 (diff) | |
Merge pull request #321 from donaldsharp/speed
Speedy McSpeederson
Diffstat (limited to 'zebra/interface.c')
| -rw-r--r-- | zebra/interface.c | 4 |
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, |
