]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
add timezone support to time match
authorHarald Welte <laforge@gnumonks.org>
Fri, 7 Dec 2001 10:57:33 +0000 (10:57 +0000)
committerHarald Welte <laforge@gnumonks.org>
Fri, 7 Dec 2001 10:57:33 +0000 (10:57 +0000)
extensions/libipt_time.c

index 8fde010b345b4002401c25663a75bf2440ebb31e..1ad5058a308c4940a18ef8c8ef613ad6e0f72768 100644 (file)
@@ -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'");
 }