Explorar o código

[NETFILTER]: fix cut-and-paste error in exit functions

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Patrick McHardy %!s(int64=18) %!d(string=hai) anos
pai
achega
f64ad5bb04
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      net/netfilter/xt_NFQUEUE.c
  2. 1 1
      net/netfilter/xt_connmark.c

+ 1 - 1
net/netfilter/xt_NFQUEUE.c

@@ -68,7 +68,7 @@ static int __init xt_nfqueue_init(void)
 
 
 static void __exit xt_nfqueue_fini(void)
 static void __exit xt_nfqueue_fini(void)
 {
 {
-	xt_register_targets(xt_nfqueue_target, ARRAY_SIZE(xt_nfqueue_target));
+	xt_unregister_targets(xt_nfqueue_target, ARRAY_SIZE(xt_nfqueue_target));
 }
 }
 
 
 module_init(xt_nfqueue_init);
 module_init(xt_nfqueue_init);

+ 1 - 1
net/netfilter/xt_connmark.c

@@ -147,7 +147,7 @@ static int __init xt_connmark_init(void)
 
 
 static void __exit xt_connmark_fini(void)
 static void __exit xt_connmark_fini(void)
 {
 {
-	xt_register_matches(xt_connmark_match, ARRAY_SIZE(xt_connmark_match));
+	xt_unregister_matches(xt_connmark_match, ARRAY_SIZE(xt_connmark_match));
 }
 }
 
 
 module_init(xt_connmark_init);
 module_init(xt_connmark_init);