summaryrefslogtreecommitdiff
path: root/libcurl/tests/basic/driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcurl/tests/basic/driver.c')
-rw-r--r--libcurl/tests/basic/driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcurl/tests/basic/driver.c b/libcurl/tests/basic/driver.c
index 13b731c..9bd7354 100644
--- a/libcurl/tests/basic/driver.c
+++ b/libcurl/tests/basic/driver.c
@@ -1,5 +1,5 @@
/* file : tests/basic/driver.c
- * license : cURL License; see accompanying COPYING file
+ * license : curl License; see accompanying COPYING file
*/
#include <stdio.h>
#include <assert.h>
@@ -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;