summaryrefslogtreecommitdiffstats
path: root/extensions/libipt_ULOG.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-07-23 21:16:14 +0200
committerJan Engelhardt <jengelh@medozas.de>2010-07-23 21:25:43 +0200
commit32b8e61e4e5bd405d9ad07bf9468498dfbb19f9e (patch)
tree5a9fab83069d6dd29263906b88f58f58aec7d4e0 /extensions/libipt_ULOG.c
parent854fe779211ffa051009b68b3f07673938b714c5 (diff)
all: consistent syntax use in struct option
Try to inhibit copypasting old stuff. Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'extensions/libipt_ULOG.c')
-rw-r--r--extensions/libipt_ULOG.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/extensions/libipt_ULOG.c b/extensions/libipt_ULOG.c
index 4d009b75..46928c34 100644
--- a/extensions/libipt_ULOG.c
+++ b/extensions/libipt_ULOG.c
@@ -9,6 +9,7 @@
*
* libipt_ULOG.c,v 1.7 2001/01/30 11:55:02 laforge Exp
*/
+#include <stdbool.h>
#include <stdio.h>
#include <netdb.h>
#include <string.h>
@@ -42,11 +43,11 @@ static void ULOG_help(void)
}
static const struct option ULOG_opts[] = {
- {"ulog-nlgroup", 1, NULL, '!'},
- {"ulog-prefix", 1, NULL, '#'},
- {"ulog-cprange", 1, NULL, 'A'},
- {"ulog-qthreshold", 1, NULL, 'B'},
- { .name = NULL }
+ {.name = "ulog-nlgroup", .has_arg = true, .val = '!'},
+ {.name = "ulog-prefix", .has_arg = true, .val = '#'},
+ {.name = "ulog-cprange", .has_arg = true, .val = 'A'},
+ {.name = "ulog-qthreshold", .has_arg = true, .val = 'B'},
+ XT_GETOPT_TABLEEND,
};
static void ULOG_init(struct xt_entry_target *t)