Merge pull request #2005 from rpv-tomsk/issue-1996
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Wed, 26 Oct 2016 17:31:01 +0000 (19:31 +0200)
committerGitHub <noreply@github.com>
Wed, 26 Oct 2016 17:31:01 +0000 (19:31 +0200)
write_http: Fixed DS type check

src/write_http.c

index 4a5818c..f8cc4e8 100644 (file)
@@ -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;