From 5352367022f4f260794e5692b8719f9675a8c691 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 6 Nov 2021 17:08:59 +1000 Subject: [PATCH] Prevent translation of curl Signed-off-by: Allan McRae --- lib/libalpm/dload.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c index af402c38..ae93df9a 100644 --- a/lib/libalpm/dload.c +++ b/lib/libalpm/dload.c @@ -493,8 +493,8 @@ static int curl_check_finished_download(CURLM *curlm, CURLMsg *msg, curl_gethost(payload->fileurl, hostname, sizeof(hostname)); curlerr = msg->data.result; - _alpm_log(handle, ALPM_LOG_DEBUG, "%s: curl returned result %d from transfer\n", - payload->remote_name, curlerr); + _alpm_log(handle, ALPM_LOG_DEBUG, "%s: %s returned result %d from transfer\n", + payload->remote_name, "curl", curlerr); /* was it a success? */ switch(curlerr) {