diff options
author | hasso <hasso> | 2004-03-03 19:36:24 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-03-03 19:36:24 +0000 |
commit | c253b48464a6da11b0410b4b14f782895fa05906 (patch) | |
tree | 34d549ee874a407f5e2d1cd005dff5311c36fe5a /ripd/ripd.c | |
parent | f7662d272b9e196db8eb32893028502da5c4be96 (diff) | |
download | quagga-c253b48464a6da11b0410b4b14f782895fa05906.tar.bz2 quagga-c253b48464a6da11b0410b4b14f782895fa05906.tar.xz |
"show ip rip" fix from Krzysztof Oledzki ([quagga-dev 437]).
Diffstat (limited to 'ripd/ripd.c')
-rw-r--r-- | ripd/ripd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ripd/ripd.c b/ripd/ripd.c index 92eb9afa..608eee88 100644 --- a/ripd/ripd.c +++ b/ripd/ripd.c @@ -3343,7 +3343,7 @@ DEFUN (show_ip_rip, "Sub-codes:%s" " (n) - normal, (s) - static, (d) - default, (r) - redistribute,%s" " (i) - interface%s%s" - " Network Next Hop Metric From Tag Time%s", + " Network Next Hop Metric From Tag Time%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE); for (np = route_top (rip->table); np; np = route_next (np)) @@ -3357,7 +3357,7 @@ DEFUN (show_ip_rip, rip_route_type_print (rinfo->sub_type), inet_ntoa (np->p.u.prefix4), np->p.prefixlen); - len = 21 - len; + len = 24 - len; if (len > 0) vty_out (vty, "%*s", len, " "); |