From e664cd5826d43930fcc5b5dbaedbec94af33184b Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 22 May 2008 21:20:07 +0000 Subject: Fixed a surprising number of example programs that were passing int arguments to curl_easy_setopt instead of long. --- docs/examples/https.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/examples/https.c') diff --git a/docs/examples/https.c b/docs/examples/https.c index 4a83f5f93..e6b8e89b6 100644 --- a/docs/examples/https.c +++ b/docs/examples/https.c @@ -31,7 +31,7 @@ int main(void) * default bundle, then the CURLOPT_CAPATH option might come handy for * you. */ - curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0); + curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); #endif #ifdef SKIP_HOSTNAME_VERFICATION @@ -41,7 +41,7 @@ int main(void) * subjectAltName) fields, libcurl will refuse to connect. You can skip * this check, but this will make the connection less secure. */ - curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0); + curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); #endif res = curl_easy_perform(curl); -- cgit v1.2.3