diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/influxdb-writer.c | 2 | ||||
-rw-r--r-- | src/plugins/influxdb.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/influxdb-writer.c b/src/plugins/influxdb-writer.c index a236fe3..4ffa8c9 100644 --- a/src/plugins/influxdb-writer.c +++ b/src/plugins/influxdb-writer.c @@ -134,7 +134,7 @@ CURL *make_curl_write_post(const char *url, json_object *metricsJ) /* Check that we just do not broke the for loop before trying preparing CURL request object */ curl = i == lpd ? - curl_wrap_prepare_post(url, NULL, 1, " ", (const char * const*)post_data) : NULL; + curl_wrap_prepare_post_binary(url, NULL, " ", (const char * const*)post_data) : NULL; free(serie); free(post_data); diff --git a/src/plugins/influxdb.c b/src/plugins/influxdb.c index ebba4e1..77f78f7 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_binary("localhost:"DEFAULT_DBPORT"/query",NULL, " ", post_data); curl_wrap_perform(request, &result, &result_size); if(curl_wrap_response_code_get(request) != 200) { |