commit 0775468aca5642a9e8ffec37fa8a08c239d1c721
parent 55d43f79aaeda1741676e9f5f93374349119bae3
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Thu, 18 Oct 2018 17:43:26 +0200
fix indentation.
may be due to some naughty text editor
Diffstat:
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/src/twister/taler-twister-service.c b/src/twister/taler-twister-service.c
@@ -1378,39 +1378,39 @@ create_response (void *cls,
}
if (0 != hr->io_len)
curl_easy_setopt (hr->curl,
- CURLOPT_POSTFIELDSIZE,
- hr->io_len);
+ CURLOPT_POSTFIELDSIZE,
+ hr->io_len);
curl_easy_setopt (hr->curl,
CURLOPT_HEADERFUNCTION,
&curl_check_hdr);
curl_easy_setopt (hr->curl,
- CURLOPT_HEADERDATA,
- hr);
+ CURLOPT_HEADERDATA,
+ hr);
curl_easy_setopt (hr->curl,
- CURLOPT_FOLLOWLOCATION,
- 0);
+ CURLOPT_FOLLOWLOCATION,
+ 0);
curl_easy_setopt (hr->curl,
- CURLOPT_CONNECTTIMEOUT,
- 600L);
+ CURLOPT_CONNECTTIMEOUT,
+ 600L);
curl_easy_setopt (hr->curl,
- CURLOPT_TIMEOUT,
- 600L);
+ CURLOPT_TIMEOUT,
+ 600L);
curl_easy_setopt (hr->curl,
- CURLOPT_NOSIGNAL,
- 1L);
+ CURLOPT_NOSIGNAL,
+ 1L);
curl_easy_setopt (hr->curl,
- CURLOPT_PRIVATE,
- hr);
+ CURLOPT_PRIVATE,
+ hr);
curl_easy_setopt (hr->curl,
- CURLOPT_VERBOSE,
- 0);
+ CURLOPT_VERBOSE,
+ 0);
{
char *curlurl;
GNUNET_asprintf (&curlurl,
- "%s%s",
- target_server_base_url,
- hr->url);
+ "%s%s",
+ target_server_base_url,
+ hr->url);
curl_easy_setopt (hr->curl,
CURLOPT_URL,
curlurl);