From 6a8f3a37db28ff8a601e5999499c20049c1453d5 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Wed, 18 Apr 2018 19:58:39 +0200 Subject: Concatenation separator for curl wrap configurable Change-Id: I682744080325335c1228ca84486f07725636729a Signed-off-by: Romain Forlot --- src/plugins/influxdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/influxdb.c b/src/plugins/influxdb.c index c33d167..ebba4e1 100644 --- a/src/plugins/influxdb.c +++ b/src/plugins/influxdb.c @@ -62,7 +62,7 @@ int create_database() post_data[0] = "q=CREATE DATABASE \""DEFAULT_DB"\""; post_data[1] = NULL; - CURL *request = curl_wrap_prepare_post("localhost:"DEFAULT_DBPORT"/query",NULL, 1, post_data); + CURL *request = curl_wrap_prepare_post("localhost:"DEFAULT_DBPORT"/query",NULL, 1, ' ', post_data); curl_wrap_perform(request, &result, &result_size); if(curl_wrap_response_code_get(request) != 200) { -- cgit 1.2.3-korg