summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2011-03-18 22:29:23 -0400
committerDan McGee <dan@archlinux.org>2011-03-23 03:44:16 -0500
commit47e41b2023f0d13f213b771db96297968fe0f280 (patch)
treea8570d261caea7c64519fa396fde90e7f8b6701a
parente29301954c00fbdfe757a033929e71a349b24497 (diff)
downloadpacman-47e41b2023f0d13f213b771db96297968fe0f280.tar.gz
pacman-47e41b2023f0d13f213b771db96297968fe0f280.zip
lib/dload.c: don't use deprecated curl symbols
CURLINFO_HTTP_CODE is deprecated in favor of CURLINFO_RESPONSE_CODE. Both yield the same values. Signed-off-by: Dave Reisner <d@falconindy.com> Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--lib/libalpm/dload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c
index 2c2c2d73..ba8ca949 100644
--- a/lib/libalpm/dload.c
+++ b/lib/libalpm/dload.c
@@ -231,7 +231,7 @@ static int curl_download_internal(const char *url, const char *localpath,
handle->curlerr = curl_easy_perform(handle->curl);
/* retrieve info about the state of the transfer */
- curl_easy_getinfo(handle->curl, CURLINFO_HTTP_CODE, &httpresp);
+ curl_easy_getinfo(handle->curl, CURLINFO_RESPONSE_CODE, &httpresp);
curl_easy_getinfo(handle->curl, CURLINFO_FILETIME, &remote_time);
curl_easy_getinfo(handle->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &remote_size);
curl_easy_getinfo(handle->curl, CURLINFO_SIZE_DOWNLOAD, &bytes_dl);