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