diff options
author | David S. Miller <davem@davemloft.net> | 2013-03-25 14:12:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-03-25 14:12:55 -0400 |
commit | eaac5f3d3ad33547b299935e6db0cfc7be9a576a (patch) | |
tree | d5d762d05e24f9cd9959553210cf8590b57759e3 /net/core/net-procfs.c | |
parent | 25c7704d8bdcf6746dab4397953df51759924b37 (diff) |
net: Print functions in /proc/net/ptype without the offset.
It's always zero.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/net-procfs.c')
-rw-r--r-- | net/core/net-procfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/net-procfs.c b/net/core/net-procfs.c index 3174f1998ee6..569d355fec3e 100644 --- a/net/core/net-procfs.c +++ b/net/core/net-procfs.c | |||
@@ -271,7 +271,7 @@ static int ptype_seq_show(struct seq_file *seq, void *v) | |||
271 | else | 271 | else |
272 | seq_printf(seq, "%04x", ntohs(pt->type)); | 272 | seq_printf(seq, "%04x", ntohs(pt->type)); |
273 | 273 | ||
274 | seq_printf(seq, " %-8s %pF\n", | 274 | seq_printf(seq, " %-8s %pf\n", |
275 | pt->dev ? pt->dev->name : "", pt->func); | 275 | pt->dev ? pt->dev->name : "", pt->func); |
276 | } | 276 | } |
277 | 277 | ||