aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorEric Leblond <eric@inl.fr>2010-01-18 03:44:39 -0500
committerPatrick McHardy <kaber@trash.net>2010-01-18 03:44:39 -0500
commita5d896adf019143adf72d08826fe5359b6a8762c (patch)
tree8ee88e11e247ae9f4eb058509be156648dee34f5 /net
parente89fc3f1b06d9241f65e580b002789abaa6d11ac (diff)
netfilter: nfnetlink_queue: simplify warning message
This patch remove variable part from a debug message to have message concatenation from syslog. Signed-off-by: Eric Leblond <eric@inl.fr> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net')
-rw-r--r--net/netfilter/nfnetlink_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c
index 5c589b27d6eb..90cf36decea3 100644
--- a/net/netfilter/nfnetlink_queue.c
+++ b/net/netfilter/nfnetlink_queue.c
@@ -414,8 +414,8 @@ nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
414 queue->queue_dropped++; 414 queue->queue_dropped++;
415 if (net_ratelimit()) 415 if (net_ratelimit())
416 printk(KERN_WARNING "nf_queue: full at %d entries, " 416 printk(KERN_WARNING "nf_queue: full at %d entries, "
417 "dropping packets(s). Dropped: %d\n", 417 "dropping packets(s).\n",
418 queue->queue_total, queue->queue_dropped); 418 queue->queue_total);
419 goto err_out_free_nskb; 419 goto err_out_free_nskb;
420 } 420 }
421 421