summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlaforge <laforge>2001-12-07 10:57:33 +0000
committerlaforge <laforge>2001-12-07 10:57:33 +0000
commit3e558fcee784500620f20ce147ec622eb8956839 (patch)
treec4163e1b115923275878051319bce101e545ff7d
parente888737f708daf065099c31307485ce85f4286df (diff)
add timezone support to time match
-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 8fde010..1ad5058 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'");
}