Skip to content

Commit

Permalink
netfilter: nfnetlink_queue: simplify warning message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Eric Leblond authored and Patrick McHardy committed Jan 18, 2010
1 parent e89fc3f commit a5d896a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/netfilter/nfnetlink_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@ nfqnl_enqueue_packet(struct nf_queue_entry *entry, unsigned int queuenum)
queue->queue_dropped++;
if (net_ratelimit())
printk(KERN_WARNING "nf_queue: full at %d entries, "
"dropping packets(s). Dropped: %d\n",
queue->queue_total, queue->queue_dropped);
"dropping packets(s).\n",
queue->queue_total);
goto err_out_free_nskb;
}

Expand Down

0 comments on commit a5d896a

Please sign in to comment.