summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2001-12-07 10:57:33 +0000
committerHarald Welte <laforge@gnumonks.org>2001-12-07 10:57:33 +0000
commit48ea58532803c56d31933af3e74af83312748d22 (patch)
treec4163e1b115923275878051319bce101e545ff7d /extensions
parentedfce4e974d0c5d0396115ea3440ce304fca5dd2 (diff)
add timezone support to time match
Diffstat (limited to 'extensions')
-rw-r--r--extensions/libipt_time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libipt_time.c b/extensions/libipt_time.c
index 8fde010b..1ad5058a 100644
--- a/extensions/libipt_time.c
+++ b/extensions/libipt_time.c
@@ -221,13 +221,13 @@ parse(int c, char **argv, int invert, unsigned int *flags,
return 1;
}
-/* Final check; must have specified --time-start --time-stop --days. */
+/* Final check; must have specified --timestart --timestop --days. */
static void
final_check(unsigned int flags)
{
if (flags != (IPT_TIME_START | IPT_TIME_STOP | IPT_TIME_DAYS))
exit_error(PARAMETER_PROBLEM,
- "TIME match: You must specify `--time-start --time-stop and --days'");
+ "TIME match: You must specify `--timestart --timestop and --days'");
}