Prevent translation of curl

Message ID 20211106070859.2419606-1-allan@archlinux.org
State Accepted
Headers show
Series Prevent translation of curl | expand

Commit Message

Allan McRae Nov. 6, 2021, 7:08 a.m. UTC
Signed-off-by: Allan McRae <allan@archlinux.org>
---
 lib/libalpm/dload.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Patch

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) {