Skip to content
Snippets Groups Projects
Commit 3d89e9cf authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by David S. Miller
Browse files

[NETFILTER]: nf_conntrack: add \n to "expectation table full" message

parent 4f4c9430
No related branches found
No related tags found
No related merge requests found
...@@ -381,7 +381,7 @@ int nf_ct_expect_related(struct nf_conntrack_expect *expect) ...@@ -381,7 +381,7 @@ int nf_ct_expect_related(struct nf_conntrack_expect *expect)
if (nf_ct_expect_count >= nf_ct_expect_max) { if (nf_ct_expect_count >= nf_ct_expect_max) {
if (net_ratelimit()) if (net_ratelimit())
printk(KERN_WARNING printk(KERN_WARNING
"nf_conntrack: expectation table full"); "nf_conntrack: expectation table full\n");
ret = -EMFILE; ret = -EMFILE;
goto out; goto out;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment