src/configfile.c: Fix the default interval setting.
authorFlorian Forster <octo@collectd.org>
Tue, 9 Sep 2014 21:43:11 +0000 (23:43 +0200)
committerFlorian Forster <octo@collectd.org>
Wed, 10 Sep 2014 05:46:16 +0000 (07:46 +0200)
Also fixes a bug in global_option_get_time(): Values smaller than or
equal to zero are illegal and the default value should be returned.
Thanks to @anandkarthik for spotting this!

Fixes: #727

src/configfile.c

index 9841efd..fbb3cd3 100644 (file)
@@ -964,7 +964,7 @@ cdtime_t global_option_get_time (const char *name, cdtime_t def) /* {{{ */
        v = strtod (optstr, &endptr);
        if ((endptr == NULL) || (*endptr != 0) || (errno != 0))
                return (def);
-       else if (v >= 0.0)
+       else if (v <= 0.0)
                return (def);
 
        return (DOUBLE_TO_CDTIME_T (v));
@@ -972,7 +972,8 @@ cdtime_t global_option_get_time (const char *name, cdtime_t def) /* {{{ */
 
 cdtime_t cf_get_default_interval (void)
 {
-       return (global_option_get_time ("Interval", COLLECTD_DEFAULT_INTERVAL));
+       return (global_option_get_time ("Interval",
+                              DOUBLE_TO_CDTIME_T (COLLECTD_DEFAULT_INTERVAL)));
 }
 
 void cf_unregister (const char *type)