]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
modules: remove XT_ALIGN(0) lines
authorJan Engelhardt <jengelh@medozas.de>
Tue, 16 Mar 2010 22:26:05 +0000 (23:26 +0100)
committerJan Engelhardt <jengelh@medozas.de>
Tue, 16 Mar 2010 22:26:05 +0000 (23:26 +0100)
extensions/libxt_DELUDE.c
extensions/libxt_ECHO.c
extensions/libxt_STEAL.c
extensions/libxt_SYSRQ.c
extensions/libxt_TARPIT.c
extensions/xt_ECHO.c

index 42c8ef0db3b57a011f87a9ba3ff73300a658bf7b..2586e7a04812106b58e334783b3864b65f27c5d6 100644 (file)
@@ -34,8 +34,6 @@ static struct xtables_target delude_tg_reg = {
        .name          = "DELUDE",
        .revision      = 0,
        .family        = AF_INET,
-       .size          = XT_ALIGN(0),
-       .userspacesize = XT_ALIGN(0),
        .help          = delude_tg_help,
        .parse         = delude_tg_parse,
        .final_check   = delude_tg_check,
index 39b9183686a3cca4dfc2d50ef1ff53d6ecaea298..abeb1d4e9faf2c649eea6b0b6e02e4213ce2825a 100644 (file)
@@ -30,8 +30,6 @@ static struct xtables_target echo_tg_reg = {
        .version       = XTABLES_VERSION,
        .name          = "ECHO",
        .family        = AF_UNSPEC,
-       .size          = XT_ALIGN(0),
-       .userspacesize = XT_ALIGN(0),
        .help          = echo_tg_help,
        .parse         = echo_tg_parse,
        .final_check   = echo_tg_check,
index 14772abf9cd09bbfdead6940e2cbad2c0e03a661..275ad84e8dcf9f8b0929787426c7acb686ae6ddd 100644 (file)
@@ -20,8 +20,6 @@ static struct xtables_target steal_tg_reg = {
        .version       = XTABLES_VERSION,
        .name          = "STEAL",
        .family        = AF_UNSPEC,
-       .size          = XT_ALIGN(0),
-       .userspacesize = XT_ALIGN(0),
        .help          = steal_tg_help,
        .parse         = steal_tg_parse,
        .final_check   = steal_tg_check,
index b070fb8d285ec4bf2f198db8b4852aa152653bc9..815b0847325a166b20c50ab2ad3c094af47ed390 100644 (file)
@@ -26,8 +26,6 @@ static struct xtables_target sysrq_tg_reg = {
        .name          = "SYSRQ",
        .revision      = 1,
        .family        = PF_UNSPEC,
-       .size          = XT_ALIGN(0),
-       .userspacesize = XT_ALIGN(0),
        .help          = sysrq_tg_help,
        .parse         = sysrq_tg_parse,
        .final_check   = sysrq_tg_check,
index 0e072b27675970f25011523575e2be32a972d70a..257b3abe0f3620a58d0d32b3c51bd491b8282096 100644 (file)
@@ -25,8 +25,6 @@ static struct xtables_target tarpit_tg_reg = {
        .version       = XTABLES_VERSION,
        .name          = "TARPIT",
        .family        = AF_INET,
-       .size          = XT_ALIGN(0),
-       .userspacesize = XT_ALIGN(0),
        .help          = tarpit_tg_help,
        .parse         = tarpit_tg_parse,
        .final_check   = tarpit_tg_check,
index 456403c9f2e87f2cccc80fe3993a660135134f65..56a7fa4b6ca2731dad0b7f1046383e3e0d464fe4 100644 (file)
@@ -113,7 +113,6 @@ static struct xt_target echo_tg_reg __read_mostly = {
        .proto      = IPPROTO_UDP,
        .table      = "filter",
        .target     = echo_tg4,
-       .targetsize = XT_ALIGN(0),
        .me         = THIS_MODULE,
 };