summaryrefslogtreecommitdiff
path: root/apps/app_curl.c
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2005-04-07 21:18:14 +0000
committerMatthew Fredrickson <creslin@digium.com>2005-04-07 21:18:14 +0000
commit3a57d2285a3e51dc895da9e9fb960391aa6398f8 (patch)
treeea8d965b71e25f49517139c8e8e27b53afd3a745 /apps/app_curl.c
parentff42a275f8cd6fc1450fbebeeb912d1d56c98742 (diff)
Bugfix for old versions of libcurl (#3982)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5437 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_curl.c')
-rwxr-xr-xapps/app_curl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/app_curl.c b/apps/app_curl.c
index 558117d08..06d387c54 100755
--- a/apps/app_curl.c
+++ b/apps/app_curl.c
@@ -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) {