summaryrefslogtreecommitdiffstats
path: root/extensions/libip6t_REJECT.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/libip6t_REJECT.c')
-rw-r--r--extensions/libip6t_REJECT.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/libip6t_REJECT.c b/extensions/libip6t_REJECT.c
index b8195d7f..94d26942 100644
--- a/extensions/libip6t_REJECT.c
+++ b/extensions/libip6t_REJECT.c
@@ -5,6 +5,7 @@
* ported to IPv6 by Harald Welte <laforge@gnumonks.org>
*
*/
+#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -61,8 +62,8 @@ static void REJECT_help(void)
}
static const struct option REJECT_opts[] = {
- { "reject-with", 1, NULL, '1' },
- { .name = NULL }
+ {.name = "reject-with", .has_arg = true, .val = '1'},
+ XT_GETOPT_TABLEEND,
};
static void REJECT_init(struct xt_entry_target *t)