aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib547.c
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2008-05-22 21:49:52 +0000
committerDan Fandrich <dan@coneharvesters.com>2008-05-22 21:49:52 +0000
commitd31da176eb622fb386a3b657d17921403f95e45c (patch)
treebccca4b3670b442a73cde9ffd468357c290ed9a7 /tests/libtest/lib547.c
parente664cd5826d43930fcc5b5dbaedbec94af33184b (diff)
Made sure to pass longs in to curl_easy_setopt where necessary in the
libtest code.
Diffstat (limited to 'tests/libtest/lib547.c')
-rw-r--r--tests/libtest/lib547.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/libtest/lib547.c b/tests/libtest/lib547.c
index 52f1e2039..85f22fe8e 100644
--- a/tests/libtest/lib547.c
+++ b/tests/libtest/lib547.c
@@ -76,8 +76,8 @@ int test(char *URL)
}
curl_easy_setopt(curl, CURLOPT_URL, URL);
- curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
- curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
+ curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
+ curl_easy_setopt(curl, CURLOPT_HEADER, 1L);
#ifdef LIB548
/* set the data to POST with a mere pointer to a zero-terminated string */
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, UPLOADTHIS);
@@ -88,13 +88,13 @@ int test(char *URL)
curl_easy_setopt(curl, CURLOPT_READFUNCTION, readcallback);
curl_easy_setopt(curl, CURLOPT_READDATA, &counter);
/* We CANNOT do the POST fine without setting the size (or choose chunked)! */
- curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, strlen(UPLOADTHIS));
+ curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(UPLOADTHIS));
#endif
- curl_easy_setopt(curl, CURLOPT_POST, 1);
+ curl_easy_setopt(curl, CURLOPT_POST, 1L);
curl_easy_setopt(curl, CURLOPT_PROXY, libtest_arg2);
curl_easy_setopt(curl, CURLOPT_PROXYUSERPWD, libtest_arg3);
curl_easy_setopt(curl, CURLOPT_PROXYAUTH,
- CURLAUTH_NTLM | CURLAUTH_DIGEST | CURLAUTH_BASIC );
+ (long) (CURLAUTH_NTLM | CURLAUTH_DIGEST | CURLAUTH_BASIC) );
res = curl_easy_perform(curl);