Update instances of some obsolete CURLOPTs to their new names

This commit is contained in:
Dan Fandrich
2014-07-05 16:59:12 +02:00
parent 8ffe6f5b57
commit 3ae2b6cd7f
10 changed files with 12 additions and 13 deletions

View File

@@ -63,9 +63,8 @@ int main(int argc, char *argv[])
pagefile = fopen(pagefilename, "wb");
if (pagefile) {
/* write the page body to this file handle. CURLOPT_FILE is also known as
CURLOPT_WRITEDATA*/
curl_easy_setopt(curl_handle, CURLOPT_FILE, pagefile);
/* write the page body to this file handle */
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, pagefile);
/* get it! */
curl_easy_perform(curl_handle);