summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2004-07-11 20:17:53 +0000
committerHarald Welte <laforge@gnumonks.org>2004-07-11 20:17:53 +0000
commit3e2b8df5bb07dcb04216e2f54d528d7f01de5932 (patch)
treef3034e36e65329d45c69f763fb339342653e33de /extensions
parent6997cdf4ef385771711d877bbf8d67d63bf3ba5d (diff)
fix syntax of help message
Diffstat (limited to 'extensions')
-rw-r--r--extensions/libipt_nth.c6
-rw-r--r--extensions/libipt_random.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/extensions/libipt_nth.c b/extensions/libipt_nth.c
index ab8f97d6..764c9b97 100644
--- a/extensions/libipt_nth.c
+++ b/extensions/libipt_nth.c
@@ -30,10 +30,10 @@ help(void)
printf(
"nth v%s options:\n"
" --every Nth Match every Nth packet\n"
-" [--counter] num Use counter 0-%u (default:0)\n"
-" [--start] num Initialize the counter at the number 'num'\n"
+" [--counter num ] Use counter 0-%u (default:0)\n"
+" [--start num ] Initialize the counter at the number 'num'\n"
" instead of 0. Must be between 0 and Nth-1\n"
-" [--packet] num Match on 'num' packet. Must be between 0\n"
+" [--packet num ] Match on 'num' packet. Must be between 0\n"
" and Nth-1.\n\n"
" If --packet is used for a counter than\n"
" there must be Nth number of --packet\n"
diff --git a/extensions/libipt_random.c b/extensions/libipt_random.c
index 97f09a42..273501ae 100644
--- a/extensions/libipt_random.c
+++ b/extensions/libipt_random.c
@@ -35,7 +35,7 @@ help(void)
{
printf(
"random v%s options:\n"
-" [--average] percent The probability in percentage of the match\n"
+" [--average percent ] The probability in percentage of the match\n"
" If ommited, a probability of 50%% percent is set.\n"
" Percentage must be within : 1 <= percent <= 99.\n\n",
IPTABLES_VERSION);