X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fnotify_email.c;h=c7fe79eaf6ffe2059018bf4b810b15fd3923b81c;hb=063a5e75b36173e89ffa18d32d47509f6ef968ec;hp=76d48d445825c83834d93095ed35420ce288b7d1;hpb=af6222065f1f5d8969afdde89c9f26a73e1e1690;p=collectd.git diff --git a/src/notify_email.c b/src/notify_email.c index 76d48d44..c7fe79ea 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 @@ -66,7 +66,7 @@ static char *email_subject = NULL; /* Callback to get username and password */ static int authinteract (auth_client_request_t request, char **result, int fields, void __attribute__((unused)) *arg) -{ +{ int i; for (i = 0; i < fields; i++) { @@ -145,7 +145,7 @@ static int notify_email_init (void) if ( !smtp_auth_set_context (session, authctx)) { pthread_mutex_unlock (&session_lock); ERROR ("notify_email plugin: cannot set SMTP auth context"); - return (-1); + return (-1); } pthread_mutex_unlock (&session_lock); @@ -176,7 +176,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); @@ -282,7 +282,7 @@ static int notify_email_notification (const notification_t *n, if (!(message = smtp_add_message (session))) { pthread_mutex_unlock (&session_lock); ERROR ("notify_email plugin: cannot set SMTP message"); - return (-1); + return (-1); } smtp_set_reverse_path (message, email_from); smtp_set_header (message, "To", NULL, NULL);