Archived
14
0
Fork 0

Bugfix for old versions of libcurl (#3982)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5437 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2005-04-07 21:18:14 +00:00
parent 83c8ebbbb8
commit 6919ba569f

View file

@ -104,7 +104,11 @@ static int curl_exec(struct ast_channel *chan, void *data)
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, WriteMemoryCallback);
#ifdef CURLOPT_WRITEDATA
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&chunk);
#else
curl_easy_setopt(curl, CURLOPT_WRITEINFO, (void *)&chunk);
#endif
curl_easy_setopt(curl, CURLOPT_USERAGENT, "asterisk-libcurl-agent/1.0");
if (post_data) {