From patchwork Sat Jun 22 16:40:40 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: gapsf X-Patchwork-Id: 253418 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 7900B2C040B for ; Sun, 23 Jun 2013 02:49:09 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751720Ab3FVQtH (ORCPT ); Sat, 22 Jun 2013 12:49:07 -0400 Received: from forward4h.mail.yandex.net ([84.201.186.22]:33034 "EHLO forward4h.mail.yandex.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751608Ab3FVQtG (ORCPT ); Sat, 22 Jun 2013 12:49:06 -0400 X-Greylist: delayed 443 seconds by postgrey-1.27 at vger.kernel.org; Sat, 22 Jun 2013 12:49:06 EDT Received: from smtp2h.mail.yandex.net (smtp2h.mail.yandex.net [84.201.187.145]) by forward4h.mail.yandex.net (Yandex) with ESMTP id 187B51B2C28D for ; Sat, 22 Jun 2013 20:41:39 +0400 (MSK) Received: from smtp2h.mail.yandex.net (localhost [127.0.0.1]) by smtp2h.mail.yandex.net (Yandex) with ESMTP id E8FB41700F60 for ; Sat, 22 Jun 2013 20:41:38 +0400 (MSK) Received: from ns2.omkc.ru (ns2.omkc.ru [217.25.209.2]) by smtp2h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id 2sPvwVXLim-fceCeNRJ; Sat, 22 Jun 2013 20:41:38 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1371919298; bh=H7hIjxo+oGVZGo8mJlpyNG+EntpHU4jdGL9sdbytCBc=; h=From:To:Subject:Date:Message-Id:X-Mailer; b=pMQZqsiIVoe7HZQiPcpWv8x8289eyVcxocmzp0akDq2ezc96n+Kk2pUOci09jmaIu GNzzsHYlvBPfAVf68RdsJhhzJC186vPyp9tYb8/r95pADJZ9DtWMOPus9aIivGYbe9 Km/LhRs13Bx4lkSnWdRLDWhcW/apFlysOoRK0buw= Authentication-Results: smtp2h.mail.yandex.net; dkim=pass header.i=@yandex.ru From: gapsf@yandex.ru To: netfilter-devel@vger.kernel.org Subject: [PATCH] nftables kernel tree: nf_tables_ipv4.c: typo in struct filter_ipv4 initialization Date: Sat, 22 Jun 2013 23:40:40 +0700 Message-Id: <1371919240-2216-1-git-send-email-gapsf@yandex.ru> X-Mailer: git-send-email 1.8.3.msysgit.0 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org From: gapsf --- net/ipv4/netfilter/nf_tables_ipv4.c | 1 - 1 file changed, 1 deletion(-) diff --git a/net/ipv4/netfilter/nf_tables_ipv4.c b/net/ipv4/netfilter/nf_tables_ipv4.c index ab6b407..5dfb2ae 100644 --- a/net/ipv4/netfilter/nf_tables_ipv4.c +++ b/net/ipv4/netfilter/nf_tables_ipv4.c @@ -100,7 +100,6 @@ static struct nf_chain_type filter_ipv4 = { .fn = { [NF_INET_LOCAL_IN] = nft_do_chain_ipv4, [NF_INET_LOCAL_OUT] = nft_do_chain_ipv4, - [NF_INET_LOCAL_OUT] = nft_do_chain_ipv4, [NF_INET_FORWARD] = nft_do_chain_ipv4, [NF_INET_PRE_ROUTING] = nft_do_chain_ipv4, [NF_INET_POST_ROUTING] = nft_do_chain_ipv4,