X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_vl_lookup_test.c;h=776a520a070cfc4b38aff6f0e07aa28c1cb126f5;hb=d87be963b63b74b9a8052074234d39e7eb75a351;hp=2f87fdbb71263ec026e14b65a03ee584782c12de;hpb=79963d13c1884d1d92667cc502ad20758b084a12;p=collectd.git diff --git a/src/utils_vl_lookup_test.c b/src/utils_vl_lookup_test.c index 2f87fdbb..776a520a 100644 --- a/src/utils_vl_lookup_test.c +++ b/src/utils_vl_lookup_test.c @@ -32,8 +32,8 @@ static _Bool expect_new_obj = 0; static _Bool have_new_obj = 0; -static identifier_t last_class_ident; -static identifier_t last_obj_ident; +static lookup_identifier_t last_class_ident; +static lookup_identifier_t last_obj_ident; static data_source_t dsrc_test = {"value", DS_TYPE_DERIVE, 0.0, NAN}; static data_set_t const ds_test = {"test", 1, &dsrc_test}; @@ -43,8 +43,8 @@ static data_set_t const ds_unknown = {"unknown", 1, &dsrc_unknown}; static int lookup_obj_callback(data_set_t const *ds, value_list_t const *vl, void *user_class, void *user_obj) { - identifier_t *class = user_class; - identifier_t *obj = user_obj; + lookup_identifier_t *class = user_class; + lookup_identifier_t *obj = user_obj; OK1(expect_new_obj == have_new_obj, (expect_new_obj ? "New obj is created." : "Updating existing obj.")); @@ -60,8 +60,8 @@ static int lookup_obj_callback(data_set_t const *ds, value_list_t const *vl, static void *lookup_class_callback(data_set_t const *ds, value_list_t const *vl, void *user_class) { - identifier_t *class = user_class; - identifier_t *obj; + lookup_identifier_t *class = user_class; + lookup_identifier_t *obj; assert(expect_new_obj); @@ -85,7 +85,7 @@ static int checked_lookup_add(lookup_t *obj, /* {{{ */ char const *plugin_instance, char const *type, char const *type_instance, unsigned int group_by) { - identifier_t ident; + lookup_identifier_t ident; void *user_class; strncpy(ident.host, host, sizeof(ident.host)); @@ -107,7 +107,7 @@ static int checked_lookup_search(lookup_t *obj, char const *host, char const *plugin_instance, char const *type, char const *type_instance, _Bool expect_new) { int status; - value_list_t vl = VALUE_LIST_STATIC; + value_list_t vl = VALUE_LIST_INIT; data_set_t const *ds = &ds_unknown; strncpy(vl.host, host, sizeof(vl.host));