From 581387d331b78db182a1651005a196152eff8513 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sun, 20 Mar 2016 11:53:13 +0100 Subject: [PATCH] Fix indentation in previous commit --- src/write_http.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/write_http.c b/src/write_http.c index bbd94af1..c2968290 100644 --- a/src/write_http.c +++ b/src/write_http.c @@ -56,7 +56,7 @@ struct wh_callback_s int format; CURL *curl; - struct curl_slist *headers; + struct curl_slist *headers; char curl_errbuf[CURL_ERROR_SIZE]; char send_buffer[4096]; @@ -113,7 +113,7 @@ static int wh_callback_init (wh_callback_t *cb) /* {{{ */ curl_easy_setopt (cb->curl, CURLOPT_NOSIGNAL, 1L); curl_easy_setopt (cb->curl, CURLOPT_USERAGENT, PACKAGE_NAME"/"PACKAGE_VERSION); - cb->headers = NULL; + cb->headers = NULL; cb->headers = curl_slist_append (cb->headers, "Accept: */*"); if (cb->format == WH_FORMAT_JSON) cb->headers = curl_slist_append (cb->headers, "Content-Type: application/json"); @@ -264,11 +264,11 @@ static void wh_callback_free (void *data) /* {{{ */ curl_easy_cleanup (cb->curl); - if (cb->headers != NULL) - { - curl_slist_free_all (cb->headers); - cb->headers = NULL; - } + if (cb->headers != NULL) + { + curl_slist_free_all (cb->headers); + cb->headers = NULL; + } sfree (cb->location); sfree (cb->user); @@ -531,7 +531,7 @@ static int wh_config_url (oconfig_item_t *ci) /* {{{ */ cb->cacert = NULL; cb->format = WH_FORMAT_COMMAND; cb->curl = NULL; - cb->headers = NULL; + cb->headers = NULL; pthread_mutex_init (&cb->send_lock, /* attr = */ NULL); -- 2.30.2