Hi,

I have attached a patch to change a little bit what messages are
printed when creating a ".pacnew" file.

Regards
-- 
Boris 'billiob' Faure
From 96ed99092eb7487351f746c0588313d7354eefb7 Mon Sep 17 00:00:00 2001
From: Boris 'billiob' Faure <[email protected]>
Date: Mon, 28 Feb 2011 11:33:13 +0100
Subject: [PATCH] alpm: improve installing messages on warning/errors

---
 lib/libalpm/add.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c
index 702b12e..db5ee74 100644
--- a/lib/libalpm/add.c
+++ b/lib/libalpm/add.c
@@ -401,14 +401,14 @@ static int extract_single_file(struct archive *archive,
 						" new one with .pacnew ending\n");
 				snprintf(newpath, PATH_MAX, "%s.pacnew", filename);
 				if(rename(checkfile, newpath)) {
-					_alpm_log(PM_LOG_ERROR, _("could not install %s as %s (%s)\n"),
+					_alpm_log(PM_LOG_ERROR, _("could not install new %s as %s (%s)\n"),
 							filename, newpath, strerror(errno));
-					alpm_logaction("error: could not install %s as %s (%s)\n",
+					alpm_logaction("error: could not install new %s as %s (%s)\n",
 							filename, newpath, strerror(errno));
 				} else {
-					_alpm_log(PM_LOG_WARNING, _("%s installed as %s\n"),
+					_alpm_log(PM_LOG_WARNING, _("new %s installed as %s\n"),
 							filename, newpath);
-					alpm_logaction("warning: %s installed as %s\n",
+					alpm_logaction("warning: new %s installed as %s\n",
 							filename, newpath);
 				}
 			}
-- 
1.7.4.1



Reply via email to