Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754537AbYBMVcf (ORCPT ); Wed, 13 Feb 2008 16:32:35 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1762850AbYBMV35 (ORCPT ); Wed, 13 Feb 2008 16:29:57 -0500 Received: from smtp5.pp.htv.fi ([213.243.153.39]:47459 "EHLO smtp5.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753408AbYBMV34 (ORCPT ); Wed, 13 Feb 2008 16:29:56 -0500 Date: Wed, 13 Feb 2008 23:29:40 +0200 From: Adrian Bunk To: Paul Moore , James Morris , coreteam@netfilter.org Cc: linux-kernel@vger.kernel.org Subject: [2.6 patch] make secmark_tg_destroy() static Message-ID: <20080213212940.GH3383@cs181133002.pp.htv.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 870 Lines: 25 This patch makes the needlessly global secmark_tg_destroy() static. Signed-off-by: Adrian Bunk --- df66d8d74309b41298ae011532fd284aad3ed2ba diff --git a/net/netfilter/xt_SECMARK.c b/net/netfilter/xt_SECMARK.c index 7708e20..c028485 100644 --- a/net/netfilter/xt_SECMARK.c +++ b/net/netfilter/xt_SECMARK.c @@ -111,7 +111,7 @@ secmark_tg_check(const char *tablename, const void *entry, return true; } -void secmark_tg_destroy(const struct xt_target *target, void *targinfo) +static void secmark_tg_destroy(const struct xt_target *target, void *targinfo) { switch (mode) { case SECMARK_MODE_SEL: -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/