Commit 565f2bd0 authored by Rusty Russell's avatar Rusty Russell Committed by Linus Torvalds

[PATCH] Another ip_conntrack seq fix: ip_conntrack_expect

/proc/net/ip_conntrack_expect was changed over to seq_file, but a \n
is missing.
parent f799dada
......@@ -241,8 +241,9 @@ static int exp_seq_show(struct seq_file *s, void *v)
seq_printf(s, "use=%u proto=%u ", atomic_read(&expect->use),
expect->tuple.dst.protonum);
return print_tuple(s, &expect->tuple,
__ip_ct_find_proto(expect->tuple.dst.protonum));
print_tuple(s, &expect->tuple,
__ip_ct_find_proto(expect->tuple.dst.protonum));
return seq_putc(s, '\n');
}
static struct seq_operations exp_seq_ops = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment