index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Mark Ulrich <mark.ulrich.86@gmail.com> | 2019-02-06 08:36:51 -0600 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-02-07 09:51:01 +1000 |
commit | db102c67efe9cfd4367a9110c8f97ceff5afcbe3 (patch) | |
tree | f127c62f97f1f1e8fd3dcfda205007d2383ca6fc /lib/libalpm/dload.c | |
parent | 714a1b4e4eaf7ffde5f30eccb476f59979fac44e (diff) |
-rw-r--r-- | lib/libalpm/dload.c | 1 |
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c index 36ae4ee1..7b114230 100644 --- a/lib/libalpm/dload.c +++ b/lib/libalpm/dload.c @@ -259,6 +259,7 @@ static void curl_set_handle_opts(struct dload_payload *payload, curl_easy_setopt(curl, CURLOPT_URL, payload->fileurl); curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, error_buffer); curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 10L); + curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 10L); curl_easy_setopt(curl, CURLOPT_FILETIME, 1L); curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); |