From a92b550961ed60b55f391ff073fbe005ba3c1f53 Mon Sep 17 00:00:00 2001 From: Pavel Rochnyack Date: Wed, 26 Oct 2016 23:27:36 +0600 Subject: [PATCH] write_http: Fixed DS type check Closes: #1996 --- src/write_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write_http.c b/src/write_http.c index 4a5818c7..f8cc4e8d 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; -- 2.11.0