From ef556d7cdee95373fc036850a99b1ffe7bf7f08d Mon Sep 17 00:00:00 2001 From: thib Date: Thu, 29 Sep 2011 21:56:10 +0100 Subject: [PATCH] allow tasks to be run every second --- fileconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fileconf.c b/fileconf.c index 5446fdb..0faf0ac 100644 --- a/fileconf.c +++ b/fileconf.c @@ -1355,7 +1355,7 @@ read_freq(char *ptr, cf_t *cf) /* then cl_timefreq */ if ( (ptr = get_time(ptr, (time_t *) &(cl->cl_timefreq), 0)) == NULL - || cl->cl_timefreq < 10 ) { + || cl->cl_timefreq < 1 ) { fprintf(stderr, "%s:%d: Error while reading frequency %s: skipping line.\n", file_name, line, (cl->cl_timefreq < 10) ? "(lower than 10s) " : ""); goto exiterr; -- 2.50.1