summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Straube <straubem@gmx.de>2018-06-10 18:58:34 +0200
committerAllan McRae <allan@archlinux.org>2018-08-10 12:37:19 +1000
commit9e960d9d5a735bbc7d418f2ad81d3f3e92d99968 (patch)
tree86b5dc4fdec6d6b47ed942f1397c918c71c17904 /lib
parent7f1f1355bbb3941a30798a295721e7f35077e116 (diff)
downloadpacman-9e960d9d5a735bbc7d418f2ad81d3f3e92d99968.tar.xz
libalpm/dload.c: add case for CURLE_COULDNT_RESOLVE_HOST
Add a case for curl error 'Could not resolve host'. An attempt to fix FS#48285. Signed-off-by: Michael Straube <straubem@gmx.de> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/libalpm/dload.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c
index cd3e4733..cca39470 100644
--- a/lib/libalpm/dload.c
+++ b/lib/libalpm/dload.c
@@ -473,6 +473,13 @@ static int curl_download_internal(struct dload_payload *payload,
payload->remote_name, hostname);
}
goto cleanup;
+ case CURLE_COULDNT_RESOLVE_HOST:
+ payload->unlink_on_fail = 1;
+ handle->pm_errno = ALPM_ERR_SERVER_BAD_URL;
+ _alpm_log(handle, ALPM_LOG_ERROR,
+ _("failed retrieving file '%s' from %s : %s\n"),
+ payload->remote_name, hostname, error_buffer);
+ goto cleanup;
default:
/* delete zero length downloads */
if(fstat(fileno(localf), &st) == 0 && st.st_size == 0) {