X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fprotocols.c;h=ae35c42533bcf208c8d15829c12f044759974858;hb=7535ee83bf0b12a168cee3c70e5fb97ed6dfc96c;hp=1a39aad3ef93c4eeecfb1b00ba22487869232751;hpb=213eb227d7737bfbd899474033f94342c61dcb8c;p=collectd.git diff --git a/src/protocols.c b/src/protocols.c index 1a39aad3..ae35c425 100644 --- a/src/protocols.c +++ b/src/protocols.c @@ -25,6 +25,7 @@ **/ #include "collectd.h" + #include "common.h" #include "plugin.h" #include "utils_ignorelist.h" @@ -48,17 +49,17 @@ static int config_keys_num = STATIC_ARRAY_SIZE (config_keys); static ignorelist_t *values_list = NULL; -/* +/* * Functions */ static void submit (const char *protocol_name, const char *str_key, const char *str_value) { - value_t values[1]; + value_t value; value_list_t vl = VALUE_LIST_INIT; int status; - status = parse_value (str_value, values, DS_TYPE_DERIVE); + status = parse_value (str_value, &value, DS_TYPE_DERIVE); if (status != 0) { ERROR ("protocols plugin: Parsing string as integer failed: %s", @@ -66,7 +67,7 @@ static void submit (const char *protocol_name, return; } - vl.values = values; + vl.values = &value; vl.values_len = 1; sstrncpy (vl.host, hostname_g, sizeof (vl.host)); sstrncpy (vl.plugin, "protocols", sizeof (vl.plugin));