This commit is contained in:
Daniel Stenberg 2005-12-14 13:10:14 +00:00
Родитель 6005a461bb
Коммит 9533092511
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -78,7 +78,7 @@ int main(void)
curl_slist *chunk = NULL;
chunk = curl_slist_append(chunk, "Transfer-Encoding: chunked");
res = curl_easy_setopt(curl, CURLOPT_HTTPHEADER);
res = curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
/* use curl_slist_free_all() after the *perform() call to free this
list again */
}
@ -101,7 +101,7 @@ int main(void)
curl_slist *chunk = NULL;
chunk = curl_slist_append(chunk, "Expect:");
res = curl_easy_setopt(curl, CURLOPT_HTTPHEADER);
res = curl_easy_setopt(curl, CURLOPT_HTTPHEADER, chunk);
/* use curl_slist_free_all() after the *perform() call to free this
list again */
}