From: Eric Leblond Date: Thu, 26 Mar 2009 08:04:28 +0000 (-0700) Subject: netfilter: fix nf_logger name in ebt_ulog. X-Git-Tag: v2.6.30-rc1~662^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7249dee5bdbe96302b5ff0d9a7701cf3dc8cffe8;p=profile%2Fivi%2Fkernel-x86-ivi.git netfilter: fix nf_logger name in ebt_ulog. This patch renames the ebt_ulog nf_logger from "ulog" to "ebt_ulog" to be in sync with other modules naming. As this name was currently only used for informational purpose, the renaming should be harmless. Signed-off-by: Eric Leblond Signed-off-by: David S. Miller --- diff --git a/net/bridge/netfilter/ebt_ulog.c b/net/bridge/netfilter/ebt_ulog.c index ac6fa43..133eeae 100644 --- a/net/bridge/netfilter/ebt_ulog.c +++ b/net/bridge/netfilter/ebt_ulog.c @@ -280,7 +280,7 @@ static struct xt_target ebt_ulog_tg_reg __read_mostly = { }; static struct nf_logger ebt_ulog_logger __read_mostly = { - .name = "ulog", + .name = "ebt_ulog", .logfn = &ebt_log_packet, .me = THIS_MODULE, };