aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-10-31 15:20:39 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-10-31 15:20:39 +0300
commitd1d4e15a97932b0122eb0c4a6d54453269c85792 (patch)
tree2608f823b884915f9900e499b627dfd329ea38c3 /src/testcurl/https
parent424abcd21daf7000fa826a03de6188ea608a50ec (diff)
downloadlibmicrohttpd-d1d4e15a97932b0122eb0c4a6d54453269c85792.tar.gz
libmicrohttpd-d1d4e15a97932b0122eb0c4a6d54453269c85792.zip
Stick to C89 standard for a while
Diffstat (limited to 'src/testcurl/https')
-rw-r--r--src/testcurl/https/test_https_session_info.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testcurl/https/test_https_session_info.c b/src/testcurl/https/test_https_session_info.c
index f0bee495..e300c910 100644
--- a/src/testcurl/https/test_https_session_info.c
+++ b/src/testcurl/https/test_https_session_info.c
@@ -163,9 +163,9 @@ test_query_session ()
163 curl_easy_setopt (c, CURLOPT_SSL_VERIFYHOST, 0); 163 curl_easy_setopt (c, CURLOPT_SSL_VERIFYHOST, 0);
164 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); 164 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1);
165 165
166 // NOTE: use of CONNECTTIMEOUT without also 166 /* NOTE: use of CONNECTTIMEOUT without also
167 // setting NOSIGNAL results in really weird 167 * setting NOSIGNAL results in really weird
168 // crashes on my system! 168 * crashes on my system! */
169 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); 169 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1);
170 if (CURLE_OK != (errornum = curl_easy_perform (c))) 170 if (CURLE_OK != (errornum = curl_easy_perform (c)))
171 { 171 {