From f5a1a99fa5ada912f8baf8ae4ccb8b7fad795191 Mon Sep 17 00:00:00 2001 From: Niels Werensteijn Date: Wed, 12 Oct 2016 17:03:06 +0200 Subject: [PATCH] more target to uppercase fixes --- src/libxt_TS3INIT_RESET.c | 6 +++--- src/libxt_TS3INIT_SET_COOKIE.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/libxt_TS3INIT_RESET.c b/src/libxt_TS3INIT_RESET.c index 11f34aa..0d6ec76 100644 --- a/src/libxt_TS3INIT_RESET.c +++ b/src/libxt_TS3INIT_RESET.c @@ -19,7 +19,7 @@ static void ts3init_reset_help(void) { - printf("ts3init_reset takes no options\n\n"); + printf("TS3INIT_RESET takes no options\n\n"); } static int ts3init_reset_parse(int c, char **argv, int invert, unsigned int *flags, @@ -35,7 +35,7 @@ static void ts3init_reset_check(unsigned int flags) /* register and init */ static struct xtables_target ts3init_reset_tg_reg = { - .name = "ts3init_reset", + .name = "TS33INIT_RESET", .revision = 0, .family = NFPROTO_UNSPEC, .version = XTABLES_VERSION, @@ -47,4 +47,4 @@ static struct xtables_target ts3init_reset_tg_reg = static __attribute__((constructor)) void ts3init_reset_tg_ldr(void) { xtables_register_target(&ts3init_reset_tg_reg); -} \ No newline at end of file +} diff --git a/src/libxt_TS3INIT_SET_COOKIE.c b/src/libxt_TS3INIT_SET_COOKIE.c index 21c8f20..9ccd69d 100644 --- a/src/libxt_TS3INIT_SET_COOKIE.c +++ b/src/libxt_TS3INIT_SET_COOKIE.c @@ -22,9 +22,9 @@ static void ts3init_set_cookie_tg_help(void) { printf( - "ts3init_get_cookie match options:\n" + "TS3INIT_SET_COOKIE match options:\n" " --zero-random-sequence Always return 0 as random sequence.\n" - " --cookie-seed seed Seed is a 60 byte random number in lowecase\n" + " --cookie-seed seed Seed is a 60 byte random number in\n" " hex. A source could be /dev/random.\n"); }