aboutsummaryrefslogtreecommitdiffstats
path: root/src/httpclient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/httpclient.cpp')
-rw-r--r--src/httpclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpclient.cpp b/src/httpclient.cpp
index 0682be8..506936c 100644
--- a/src/httpclient.cpp
+++ b/src/httpclient.cpp
@@ -110,7 +110,7 @@ int HttpClient::doRequest(CURL *curl, HttpRequest &request)
else {
curl_easy_setopt(curl, CURLOPT_HTTPGET, 1);
}
- if(curl_easy_setopt(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_ALL) != CURLE_OK) {
+ if (curl_easy_setopt(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_ALL) != CURLE_OK) {
std::cout << "Warning! No SSL support available\n";
}
curl_easy_setopt(curl, CURLOPT_TIMEOUT, SERVER_CONN_TIMEOUT);