summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-10-18 17:43:26 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2018-10-18 17:43:26 +0200
commit0775468aca5642a9e8ffec37fa8a08c239d1c721 (patch)
tree73d358a867d71b2ce1e8ad9334a28a559021067d
parent55d43f79aaeda1741676e9f5f93374349119bae3 (diff)
downloadtwister-0775468aca5642a9e8ffec37fa8a08c239d1c721.tar.gz
twister-0775468aca5642a9e8ffec37fa8a08c239d1c721.tar.bz2
twister-0775468aca5642a9e8ffec37fa8a08c239d1c721.zip
fix indentation.
may be due to some naughty text editor
-rw-r--r--src/twister/taler-twister-service.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/twister/taler-twister-service.c b/src/twister/taler-twister-service.c
index 0550cc2..d165422 100644
--- 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);