浏览代码

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 <eric@inl.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Eric Leblond 16 年之前
父节点
当前提交
7249dee5bd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/bridge/netfilter/ebt_ulog.c

+ 1 - 1
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 = {
 static struct nf_logger ebt_ulog_logger __read_mostly = {
-	.name		= "ulog",
+	.name		= "ebt_ulog",
 	.logfn		= &ebt_log_packet,
 	.logfn		= &ebt_log_packet,
 	.me		= THIS_MODULE,
 	.me		= THIS_MODULE,
 };
 };