From 1e1ab2bb55d4056048b8a6d73661a44e62f2ce14 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Fri, 21 Aug 2009 11:24:24 +0200 Subject: [PATCH] http plugin: Comment in the call to `curl_easy_perform'. --- src/http.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/http.c b/src/http.c index d5cc2e24..d4d17f2d 100644 --- a/src/http.c +++ b/src/http.c @@ -229,8 +229,9 @@ static void http_init_buffer (void) /* {{{ */ static int http_send_buffer (char *buffer) /* {{{ */ { int status = 0; + curl_easy_setopt (curl, CURLOPT_POSTFIELDS, buffer); - //status = curl_easy_perform (curl); + status = curl_easy_perform (curl); if (status != 0) { ERROR ("http plugin: curl_easy_perform failed with staus %i: %s", -- 2.11.0