X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fnotify_email.c;h=dc20cbbe04b37d90ddeb76bb60dd2886a99fd6d4;hb=11ca18db12e489c40aa0ac41672872cfae4b1f0b;hp=6843987cbf34b0f4f986846f051e954090b95643;hpb=8361c1e963f9184c3c4d87197fd6996d667cdb3f;p=collectd.git diff --git a/src/notify_email.c b/src/notify_email.c index 6843987c..dc20cbbe 100644 --- a/src/notify_email.c +++ b/src/notify_email.c @@ -23,12 +23,12 @@ **/ #include "collectd.h" + #include "common.h" #include "plugin.h" #include #include -#include #define MAXSTRING 256 @@ -67,8 +67,7 @@ static char *email_subject = NULL; static int authinteract (auth_client_request_t request, char **result, int fields, void __attribute__((unused)) *arg) { - int i; - for (i = 0; i < fields; i++) + for (int i = 0; i < fields; i++) { if (request[i].flags & AUTH_USER) result[i] = smtp_user; @@ -176,7 +175,7 @@ static int notify_email_config (const char *key, const char *value) { char **tmp; - tmp = (char **) realloc ((void *) recipients, (recipients_len + 1) * sizeof (char *)); + tmp = realloc (recipients, (recipients_len + 1) * sizeof (char *)); if (tmp == NULL) { ERROR ("notify_email: realloc failed."); return (-1); @@ -229,7 +228,6 @@ static int notify_email_notification (const notification_t *n, user_data_t __attribute__((unused)) *user_data) { - time_t tt; struct tm timestamp_tm; char timestamp_str[64]; @@ -249,8 +247,7 @@ static int notify_email_notification (const notification_t *n, (email_subject == NULL) ? DEFAULT_SMTP_SUBJECT : email_subject, severity, n->host); - tt = CDTIME_T_TO_TIME_T (n->time); - localtime_r (&tt, ×tamp_tm); + localtime_r (&CDTIME_T_TO_TIME_T (n->time), ×tamp_tm); strftime (timestamp_str, sizeof (timestamp_str), "%Y-%m-%d %H:%M:%S", ×tamp_tm); timestamp_str[sizeof (timestamp_str) - 1] = '\0';