Skip to content

Commit

Permalink
[NETFILTER]: nf_conntrack: add \n to "expectation table full" message
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Alexey Dobriyan authored and David S. Miller committed Mar 10, 2008
1 parent 4f4c943 commit 3d89e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/netfilter/nf_conntrack_expect.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ int nf_ct_expect_related(struct nf_conntrack_expect *expect)
if (nf_ct_expect_count >= nf_ct_expect_max) {
if (net_ratelimit())
printk(KERN_WARNING
"nf_conntrack: expectation table full");
"nf_conntrack: expectation table full\n");
ret = -EMFILE;
goto out;
}
Expand Down

0 comments on commit 3d89e9c

Please sign in to comment.