aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib542.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/libtest/lib542.c')
-rw-r--r--tests/libtest/lib542.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/libtest/lib542.c b/tests/libtest/lib542.c
index deb229d19..ffd8f361c 100644
--- a/tests/libtest/lib542.c
+++ b/tests/libtest/lib542.c
@@ -50,13 +50,13 @@ int test(char *URL)
}
/* enable verbose */
- curl_easy_setopt(curl, CURLOPT_VERBOSE, TRUE) ;
+ curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
/* enable NOBODY */
- curl_easy_setopt(curl, CURLOPT_NOBODY, TRUE) ;
+ curl_easy_setopt(curl, CURLOPT_NOBODY, 1L);
/* disable HEADER */
- curl_easy_setopt(curl, CURLOPT_HEADER, FALSE) ;
+ curl_easy_setopt(curl, CURLOPT_HEADER, 0L);
/* specify target */
curl_easy_setopt(curl,CURLOPT_URL, URL);