From d31da176eb622fb386a3b657d17921403f95e45c Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 22 May 2008 21:49:52 +0000 Subject: Made sure to pass longs in to curl_easy_setopt where necessary in the libtest code. --- tests/libtest/lib552.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/libtest/lib552.c') diff --git a/tests/libtest/lib552.c b/tests/libtest/lib552.c index 3cfeffe73..5a0eb1c68 100644 --- a/tests/libtest/lib552.c +++ b/tests/libtest/lib552.c @@ -158,17 +158,17 @@ int test(char *URL) curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, my_trace); curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &config); /* the DEBUGFUNCTION has no effect until we enable VERBOSE */ - curl_easy_setopt(curl, CURLOPT_VERBOSE, 1); + curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); /* setup repeated data string */ for (i=0; i < sizeof data; ++i) data[i] = fill[i % sizeof fill]; /* Post */ - curl_easy_setopt(curl, CURLOPT_POST, 1); + curl_easy_setopt(curl, CURLOPT_POST, 1L); /* Setup read callback */ - curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, sizeof data); + curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) sizeof data); curl_easy_setopt(curl, CURLOPT_READFUNCTION, read_callback); /* Write callback */ @@ -182,7 +182,7 @@ int test(char *URL) curl_easy_setopt(curl, CURLOPT_URL, URL); /* Accept any auth. But for this bug configure proxy with DIGEST, basic might work too, not NTLM */ - curl_easy_setopt(curl, CURLOPT_PROXYAUTH, CURLAUTH_ANY); + curl_easy_setopt(curl, CURLOPT_PROXYAUTH, (long)CURLAUTH_ANY); res = curl_easy_perform(curl); fprintf(stderr, "curl_easy_perform = %d\n", (int)res); -- cgit v1.2.3