X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fwrite_http.c;h=b3baa555d2393fb7f3d48903afb5cdd4528a7c5b;hb=f66916deea905254061bb07245e007471faf2ecf;hp=3d1fe3da09b99c0b9b68f8d17205e058089f07d0;hpb=b4a45047de41551b5b8879eba548dcf2a199fa9b;p=collectd.git diff --git a/src/write_http.c b/src/write_http.c index 3d1fe3da..b3baa555 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -366,7 +366,7 @@ static int wh_write_command (const data_set_t *ds, const value_list_t *vl, /* {{ if ((cb == NULL) || (cb->send_buffer == NULL)) return -1; - if (strcmp (ds->type, vl->type) == 0) { + if (strcmp (ds->type, vl->type) != 0) { ERROR ("write_http plugin: DS type does not match " "value list type"); return -1; @@ -820,13 +820,10 @@ static int wh_config_node (oconfig_item_t *ci) /* {{{ */ callback_name, cb->location); user_data_t user_data = { - .data = cb + .data = cb, + .free_func = wh_callback_free, }; - plugin_register_flush (callback_name, wh_flush, &user_data); - - user_data.free_func = wh_callback_free; - if (cb->send_metrics) { plugin_register_write (callback_name, wh_write, &user_data);