X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Femail.c;h=b406d48305e415e0bc45732357c5ba347036f760;hb=98e38add333bfcb893fcde408ecf3a0c43d99e31;hp=849b7f932a98f4faf147ae4fb7592ebf4309c166;hpb=2079ee1517e34de372f58e7e2267ad5c71a8a41f;p=collectd.git diff --git a/src/email.c b/src/email.c index 849b7f93..b406d483 100644 --- a/src/email.c +++ b/src/email.c @@ -448,7 +448,7 @@ static void *open_connection(void __attribute__((unused)) * arg) { collectors[i]->socket = NULL; if (plugin_thread_create(&collectors[i]->thread, &ptattr, collect, - collectors[i]) != 0) { + collectors[i], "email collector") != 0) { char errbuf[1024]; log_err("plugin_thread_create() failed: %s", sstrerror(errno, errbuf, sizeof(errbuf))); @@ -531,7 +531,8 @@ static void *open_connection(void __attribute__((unused)) * arg) { } /* static void *open_connection (void *) */ static int email_init(void) { - if (plugin_thread_create(&connector, NULL, open_connection, NULL) != 0) { + if (plugin_thread_create(&connector, NULL, open_connection, NULL, + "email listener") != 0) { char errbuf[1024]; disabled = 1; log_err("plugin_thread_create() failed: %s", @@ -613,14 +614,10 @@ static int email_shutdown(void) { static void email_submit(const char *type, const char *type_instance, gauge_t value) { - value_t values[1]; value_list_t vl = VALUE_LIST_INIT; - values[0].gauge = value; - - vl.values = values; + vl.values = &(value_t){.gauge = value}; vl.values_len = 1; - sstrncpy(vl.host, hostname_g, sizeof(vl.host)); sstrncpy(vl.plugin, "email", sizeof(vl.plugin)); sstrncpy(vl.type, type, sizeof(vl.type)); sstrncpy(vl.type_instance, type_instance, sizeof(vl.type_instance));