dect
/
linux-2.6
Archived
13
0
Fork 0

[IPV4]: Formatting fix for /proc/net/fib_trie.

The line in the /proc/net/fib_trie for route with TOS specified
- has extra \n at the end
- does not have a space after route scope
like below.
           |-- 1.1.1.1
              /32 universe UNICASTtos =1

Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Denis V. Lunev 2008-02-05 02:58:45 -08:00 committed by David S. Miller
parent 6de1a91040
commit b9c4d82a85
1 changed files with 1 additions and 2 deletions

View File

@ -2431,8 +2431,7 @@ static int fib_trie_seq_show(struct seq_file *seq, void *v)
rtn_type(buf2, sizeof(buf2),
fa->fa_type));
if (fa->fa_tos)
seq_printf(seq, "tos =%d\n",
fa->fa_tos);
seq_printf(seq, " tos=%d", fa->fa_tos);
seq_putc(seq, '\n');
}
}