more target to uppercase fixes

This commit is contained in:
Niels Werensteijn 2016-10-12 17:03:06 +02:00
parent 5e9ef66bdc
commit f5a1a99fa5
2 changed files with 5 additions and 5 deletions

View File

@ -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);
}
}

View File

@ -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");
}