]> err.no Git - linux-2.6/blobdiff - net/netfilter/xt_length.c
[NETFILTER]: Rename init functions.
[linux-2.6] / net / netfilter / xt_length.c
index b9e60f041a64d19f5bf41bead3cccb95d86942cc..109132c9a1462727267a4aab426215ed97495a00 100644 (file)
@@ -56,6 +56,7 @@ static struct xt_match length_match = {
        .name           = "length",
        .match          = match,
        .matchsize      = sizeof(struct xt_length_info),
+       .family         = AF_INET,
        .me             = THIS_MODULE,
 };
 
@@ -63,27 +64,28 @@ static struct xt_match length6_match = {
        .name           = "length",
        .match          = match6,
        .matchsize      = sizeof(struct xt_length_info),
+       .family         = AF_INET6,
        .me             = THIS_MODULE,
 };
 
-static int __init init(void)
+static int __init xt_length_init(void)
 {
        int ret;
-       ret = xt_register_match(AF_INET, &length_match);
+       ret = xt_register_match(&length_match);
        if (ret)
                return ret;
-       ret = xt_register_match(AF_INET6, &length6_match);
+       ret = xt_register_match(&length6_match);
        if (ret)
-               xt_unregister_match(AF_INET, &length_match);
+               xt_unregister_match(&length_match);
 
        return ret;
 }
 
-static void __exit fini(void)
+static void __exit xt_length_fini(void)
 {
-       xt_unregister_match(AF_INET, &length_match);
-       xt_unregister_match(AF_INET6, &length6_match);
+       xt_unregister_match(&length_match);
+       xt_unregister_match(&length6_match);
 }
 
-module_init(init);
-module_exit(fini);
+module_init(xt_length_init);
+module_exit(xt_length_fini);