diff options
author | Patrick McHardy <kaber@trash.net> | 2007-07-24 22:29:55 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-07-24 22:29:55 (GMT) |
commit | 7e2acc7e2711d51705373ac201333c9a0ebd3950 (patch) | |
tree | 06bd3d776970a2e09bfca5c67dad4490fd1ea7c0 /net/ipv6 | |
parent | ca983cefd950ec929582dd95ba6e46d12c2c6959 (diff) | |
download | linux-7e2acc7e2711d51705373ac201333c9a0ebd3950.tar.xz |
[NETFILTER]: Fix logging regression
Loading one of the LOG target fails if a different target has already
registered itself as backend for the same family. This can affect the
ipt_LOG and ipt_ULOG modules when both are loaded.
Reported and tested by: <t.artem@mailcity.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/ip6t_LOG.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/ipv6/netfilter/ip6t_LOG.c b/net/ipv6/netfilter/ip6t_LOG.c index b05327e..6ab9900 100644 --- a/net/ipv6/netfilter/ip6t_LOG.c +++ b/net/ipv6/netfilter/ip6t_LOG.c @@ -493,10 +493,8 @@ static int __init ip6t_log_init(void) ret = xt_register_target(&ip6t_log_reg); if (ret < 0) return ret; - ret = nf_log_register(PF_INET6, &ip6t_logger); - if (ret < 0 && ret != -EEXIST) - xt_unregister_target(&ip6t_log_reg); - return ret; + nf_log_register(PF_INET6, &ip6t_logger); + return 0; } static void __exit ip6t_log_fini(void) |