From patchwork Thu Oct 3 09:52:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomasz Bursztyka X-Patchwork-Id: 280248 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 CBE902C00A6 for ; Thu, 3 Oct 2013 19:53:12 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753752Ab3JCJxK (ORCPT ); Thu, 3 Oct 2013 05:53:10 -0400 Received: from mga09.intel.com ([134.134.136.24]:10353 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753913Ab3JCJxJ (ORCPT ); Thu, 3 Oct 2013 05:53:09 -0400 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga102.jf.intel.com with ESMTP; 03 Oct 2013 02:49:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.90,1024,1371106800"; d="scan'208";a="413423753" Received: from rd-180.fi.intel.com ([10.237.68.49]) by orsmga002.jf.intel.com with ESMTP; 03 Oct 2013 02:53:07 -0700 From: Tomasz Bursztyka To: netfilter-devel@vger.kernel.org Cc: Tomasz Bursztyka Subject: [iptables-nftables PATCH 3/3] xtables: arp: Do not add a useless prefix for afinfo_arp Date: Thu, 3 Oct 2013 12:52:57 +0300 Message-Id: <1380793977-9730-4-git-send-email-tomasz.bursztyka@linux.intel.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1380793977-9730-1-git-send-email-tomasz.bursztyka@linux.intel.com> References: <1380793977-9730-1-git-send-email-tomasz.bursztyka@linux.intel.com> Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Let's use libxt_ as it should, since CLASSIFY and now mangle targets (the 2 only targets xtables-arp is going to use) are libxt_ prefixed. Signed-off-by: Tomasz Bursztyka --- iptables/xtables-arp-standalone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iptables/xtables-arp-standalone.c b/iptables/xtables-arp-standalone.c index 8d4679f..a9c880f 100644 --- a/iptables/xtables-arp-standalone.c +++ b/iptables/xtables-arp-standalone.c @@ -47,7 +47,7 @@ extern const char *program_version, *program_name; static const struct xtables_afinfo afinfo_arp = { .kmod = "arp_tables", .proc_exists = "/proc/net/arp_tables_names", - .libprefix = "libarp_", + .libprefix = "libxt_", .family = NFPROTO_ARP, .ipproto = IPPROTO_IP, .so_rev_match = -1,