X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fprotocols.c;h=f7fd256ba0dae662e06a313413363d7f10d99811;hb=a4b9c9ad2d77656892026ad4b51f9fb7c2a58149;hp=4d2b2eadf0e69bc17991af0956f18250850b7ee5;hpb=d67b510b1ec7c17b6e1f65e40b8d8fdb2f33c857;p=collectd.git diff --git a/src/protocols.c b/src/protocols.c index 4d2b2ead..f7fd256b 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" @@ -54,11 +55,11 @@ static ignorelist_t *values_list = NULL; 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,9 +67,8 @@ 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)); sstrncpy (vl.plugin_instance, protocol_name, sizeof (vl.plugin_instance)); sstrncpy (vl.type, "protocol_counter", sizeof (vl.type));