[PATCH] Prevent translation of curl
Signed-off-by: Allan McRae <allan@archlinux.org> --- 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 4322318b..1f75f5f0 100644 --- a/lib/libalpm/dload.c +++ b/lib/libalpm/dload.c @@ -490,8 +490,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) { -- 2.33.1
participants (1)
-
Allan McRae