From d21f6b11724d982a0c3982373fa3135b202b4b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20M=C3=BCnchow?= Date: Fri, 21 Oct 2016 14:53:25 +0200 Subject: [PATCH] fixed wrong parameter name, when checking --command --- src/libxt_ts3init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libxt_ts3init.c b/src/libxt_ts3init.c index 20c3cb4..4cdb872 100644 --- a/src/libxt_ts3init.c +++ b/src/libxt_ts3init.c @@ -62,8 +62,8 @@ static int ts3init_parse(int c, char **argv, int invert, unsigned int *flags, return true; case '3': - param_act(XTF_ONLY_ONCE, "--random-seed", info->specific_options & CHK_TS3INIT_COMMAND); - param_act(XTF_NO_INVERT, "--random-seed", invert); + param_act(XTF_ONLY_ONCE, "--command", info->specific_options & CHK_TS3INIT_COMMAND); + param_act(XTF_NO_INVERT, "--command", invert); command = atoi(optarg); if (command < 0 || command > 255) xtables_error(PARAMETER_PROBLEM,