diff options
author | Patrick McHardy <kaber@trash.net> | 2006-08-22 03:32:47 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 17:55:28 -0400 |
commit | 1158ba27bec6d1a20999099a938908cf85f47640 (patch) | |
tree | dd638a9cab5d580887b6a5498b1a0cc0dfd77fab /net | |
parent | 1a31526baeed30aaa70503cee0ab281f78cae0d6 (diff) |
[NETFILTER]: nfnetlink_queue: fix typo in error message
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nfnetlink_queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c index eddfbe4441a2..8eb2473d83e1 100644 --- a/net/netfilter/nfnetlink_queue.c +++ b/net/netfilter/nfnetlink_queue.c | |||
@@ -584,7 +584,7 @@ nfqnl_enqueue_packet(struct sk_buff *skb, struct nf_info *info, | |||
584 | queue->queue_dropped++; | 584 | queue->queue_dropped++; |
585 | status = -ENOSPC; | 585 | status = -ENOSPC; |
586 | if (net_ratelimit()) | 586 | if (net_ratelimit()) |
587 | printk(KERN_WARNING "ip_queue: full at %d entries, " | 587 | printk(KERN_WARNING "nf_queue: full at %d entries, " |
588 | "dropping packets(s). Dropped: %d\n", | 588 | "dropping packets(s). Dropped: %d\n", |
589 | queue->queue_total, queue->queue_dropped); | 589 | queue->queue_total, queue->queue_dropped); |
590 | goto err_out_free_nskb; | 590 | goto err_out_free_nskb; |
@@ -635,7 +635,7 @@ nfqnl_mangle(void *data, int data_len, struct nfqnl_queue_entry *e) | |||
635 | diff, | 635 | diff, |
636 | GFP_ATOMIC); | 636 | GFP_ATOMIC); |
637 | if (newskb == NULL) { | 637 | if (newskb == NULL) { |
638 | printk(KERN_WARNING "ip_queue: OOM " | 638 | printk(KERN_WARNING "nf_queue: OOM " |
639 | "in mangle, dropping packet\n"); | 639 | "in mangle, dropping packet\n"); |
640 | return -ENOMEM; | 640 | return -ENOMEM; |
641 | } | 641 | } |