From: Manuel Luis SanmartĂ­n Rozada Date: Thu, 19 Jun 2014 14:37:15 +0000 (+0200) Subject: Plugin exec: change notification time to integer. X-Git-Tag: collectd-5.3.2~62 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=07e4683f7f985668641d79137b64d148bc18ba8a Plugin exec: change notification time to integer. Acording to collectd-exec.5 NOTIFICATION DATA FORMAT: time is epoch, i. e. as seconds since 1970-01-01 00:00:00 UTC. --- diff --git a/src/exec.c b/src/exec.c index cfd82a31..b9a7365e 100644 --- a/src/exec.c +++ b/src/exec.c @@ -744,8 +744,8 @@ static void *exec_notification_one (void *arg) /* {{{ */ fprintf (fh, "Severity: %s\n" - "Time: %.3f\n", - severity, CDTIME_T_TO_DOUBLE (n->time)); + "Time: %u\n", + severity, (unsigned int)CDTIME_T_TO_TIME_T(n->time)); /* Print the optional fields */ if (strlen (n->host) > 0)