From: Alexey Dobriyan Date: Mon, 10 Mar 2008 23:43:10 +0000 (-0700) Subject: [NETFILTER]: nf_conntrack: add \n to "expectation table full" message X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3d89e9cf3690b4645ce73b86c219c8188f8fa50a;p=deliverable%2Flinux.git [NETFILTER]: nf_conntrack: add \n to "expectation table full" message Signed-off-by: Alexey Dobriyan Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller --- diff --git a/net/netfilter/nf_conntrack_expect.c b/net/netfilter/nf_conntrack_expect.c index e06bf0028bb1..684ec9c1ad38 100644 --- a/net/netfilter/nf_conntrack_expect.c +++ b/net/netfilter/nf_conntrack_expect.c @@ -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; }