diff options
author | Patrick McHardy <kaber@trash.net> | 2006-10-12 17:08:11 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-10-16 02:14:07 -0400 |
commit | f603b6ec50faabbabde53ae2e2ce774968524c40 (patch) | |
tree | 91eba4f8f4e49f42541061307ea8fa73965603f6 /net/ipv4 | |
parent | f64ad5bb044326c6ebc6535d661c1abe78a0e5f2 (diff) |
[NETFILTER]: arp_tables: missing unregistration on module unload
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/netfilter/arp_tables.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c index 17e1a687ab45..0849f1cced13 100644 --- a/net/ipv4/netfilter/arp_tables.c +++ b/net/ipv4/netfilter/arp_tables.c | |||
@@ -1196,6 +1196,8 @@ err1: | |||
1196 | static void __exit arp_tables_fini(void) | 1196 | static void __exit arp_tables_fini(void) |
1197 | { | 1197 | { |
1198 | nf_unregister_sockopt(&arpt_sockopts); | 1198 | nf_unregister_sockopt(&arpt_sockopts); |
1199 | xt_unregister_target(&arpt_error_target); | ||
1200 | xt_unregister_target(&arpt_standard_target); | ||
1199 | xt_proto_fini(NF_ARP); | 1201 | xt_proto_fini(NF_ARP); |
1200 | } | 1202 | } |
1201 | 1203 | ||