mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-10-18 19:19:17 +00:00
"show ip rip" fix from Krzysztof Oledzki ([quagga-dev 437]).
This commit is contained in:
parent
429a0f8c5b
commit
a1455d86f5
@ -1,3 +1,7 @@
|
||||
2004-03-03 Krzysztof Oledzki <oleq@ans.pl>
|
||||
|
||||
* ripd.c: fix "show ip rip".
|
||||
|
||||
2004-01-23 sowmini.varadhan@sun.com
|
||||
|
||||
* rip_interface.c: obsolete unbind code in
|
||||
|
@ -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, " ");
|
||||
|
Loading…
Reference in New Issue
Block a user