X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fprotocols.c;h=12fbf45f70dc7d3e8c5fb046de7fb057ab882bf3;hb=0c4a16e41df08760ab4651451a7d86b9453b3445;hp=393c12da4dc8312be7dabfc2213f2d1f052aa4a2;hpb=79963d13c1884d1d92667cc502ad20758b084a12;p=collectd.git diff --git a/src/protocols.c b/src/protocols.c index 393c12da..12fbf45f 100644 --- a/src/protocols.c +++ b/src/protocols.c @@ -52,19 +52,18 @@ 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", str_value); 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)); @@ -214,5 +213,3 @@ void module_register(void) { config_keys_num); plugin_register_read("protocols", protocols_read); } /* void module_register */ - -/* vim: set sw=2 sts=2 et : */