summaryrefslogtreecommitdiff
path: root/libcurl/tests
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-04-01 21:48:26 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-04-05 15:12:58 +0300
commit1ff5c0d21aeccc82f07cecbba20c8725f9db53e2 (patch)
tree31da60b5f25a55646cc6f6f6530f671e63692fd5 /libcurl/tests
parent3b321915f741f148189439a2d3bba837d4e8e4c1 (diff)
Upgrade to 7.76.0
Diffstat (limited to 'libcurl/tests')
-rw-r--r--libcurl/tests/basic/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcurl/tests/basic/driver.c b/libcurl/tests/basic/driver.c
index 13b731c..bc1e409 100644
--- a/libcurl/tests/basic/driver.c
+++ b/libcurl/tests/basic/driver.c
@@ -53,7 +53,7 @@ main (int argc, char* argv[])
fprintf (stderr, "calling curl_easy_setopt()\n");
curl_easy_setopt (curl, CURLOPT_URL, url);
- curl_easy_setopt (curl, CURLOPT_TIMEOUT, 600L); // 10 mins.
+ curl_easy_setopt (curl, CURLOPT_TIMEOUT, 600L); /* 10 mins. */
curl_easy_setopt (curl, CURLOPT_FOLLOWLOCATION, 1L);
char agent[] = "libcurl-test/" LIBCURL_VERSION;