From 3d6242ed7480526abcbc8c2687157933061b5b28 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Thu, 16 Nov 2006 17:24:41 +0000 Subject: * makepkg.conf.in variable changes (missed the checkin) * Better error reporting when unpacking an archive fails * Fixed -Sc and -Scc cache dir opening/reading --- lib/libalpm/error.c | 2 +- lib/libalpm/util.c | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c index f1d7356c..1597f0cb 100644 --- a/lib/libalpm/error.c +++ b/lib/libalpm/error.c @@ -33,7 +33,7 @@ char *alpm_strerror(int err) case PM_ERR_MEMORY: return _("out of memory!"); case PM_ERR_SYSTEM: - return _("unexpected error"); + return _("unexpected system error"); case PM_ERR_BADPERMS: return _("insufficient privileges"); case PM_ERR_WRONG_ARGS: diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index ddaecebb..f1f74202 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -273,8 +273,10 @@ int _alpm_unpack(const char *archive, const char *prefix, const char *fn) archive_read_support_compression_all(_archive); archive_read_support_format_all(_archive); - if(archive_read_open_file(_archive, archive, ARCHIVE_DEFAULT_BYTES_PER_BLOCK) != ARCHIVE_OK) + if(archive_read_open_file(_archive, archive, ARCHIVE_DEFAULT_BYTES_PER_BLOCK) != ARCHIVE_OK) { + _alpm_log(PM_LOG_ERROR, _("could not open %s: %s\n"), archive, archive_error_string(_archive)); RET_ERR(PM_ERR_PKG_OPEN, -1); + } while(archive_read_next_header(_archive, &entry) == ARCHIVE_OK) { if (fn && strcmp(fn, archive_entry_pathname(entry))) { @@ -285,7 +287,7 @@ int _alpm_unpack(const char *archive, const char *prefix, const char *fn) snprintf(expath, PATH_MAX, "%s/%s", prefix, archive_entry_pathname(entry)); archive_entry_set_pathname(entry, expath); if(archive_read_extract(_archive, entry, ARCHIVE_EXTRACT_FLAGS) != ARCHIVE_OK) { - fprintf(stderr, _("could not extract %s: %s\n"), archive_entry_pathname(entry), archive_error_string(_archive)); + _alpm_log(PM_LOG_ERROR, _("could not extract %s: %s\n"), archive_entry_pathname(entry), archive_error_string(_archive)); return(1); } -- cgit v1.2.3-24-g4f1b