diff options
author | Eric Leblond <eric@inl.fr> | 2009-03-26 01:04:28 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-26 01:04:28 -0700 |
commit | 7249dee5bdbe96302b5ff0d9a7701cf3dc8cffe8 (patch) | |
tree | efc626e90cfc867e60059c200658eb2687676d85 /net | |
parent | 3b334d427cb9c866216820bfad0d8318869cc154 (diff) | |
download | linux-3.10-7249dee5bdbe96302b5ff0d9a7701cf3dc8cffe8.tar.gz linux-3.10-7249dee5bdbe96302b5ff0d9a7701cf3dc8cffe8.tar.bz2 linux-3.10-7249dee5bdbe96302b5ff0d9a7701cf3dc8cffe8.zip |
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/bridge/netfilter/ebt_ulog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/netfilter/ebt_ulog.c b/net/bridge/netfilter/ebt_ulog.c index ac6fa43c8ec..133eeae45a4 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, }; |