Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a5d896ad authored by Eric Leblond's avatar Eric Leblond Committed by Patrick McHardy
Browse files

netfilter: nfnetlink_queue: simplify warning message



This patch remove variable part from a debug message to have
message concatenation from syslog.

Signed-off-by: default avatarEric Leblond <eric@inl.fr>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent e89fc3f1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
	}