Code

src/utils_rrdcreate.c: Handle "last update" in a saner way.
authorFlorian Forster <octo@collectd.org>
Sat, 12 May 2012 15:29:44 +0000 (17:29 +0200)
committerFlorian Forster <octo@collectd.org>
Sat, 12 May 2012 15:29:44 +0000 (17:29 +0200)
src/utils_rrdcreate.c

index 91ac6ce548e878b4078e17d89cc7ce609995ee51..091b5fa6dce1d2cc3bc48bb093298f39e5d0af46 100644 (file)
@@ -406,9 +406,9 @@ int cu_rrd_create_file (const char *filename, /* {{{ */
   argv[ds_num + rra_num] = NULL;
 
   last_up = CDTIME_T_TO_TIME_T (vl->time);
-  if (last_up <= 10)
+  if (last_up <= 0)
     last_up = time (NULL);
-  last_up -= 10;
+  last_up -= 1;
 
   if (cfg->stepsize > 0)
     stepsize = cfg->stepsize;