diff options
author | Chantry Xavier <shiningxc@gmail.com> | 2008-02-27 00:50:17 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-27 19:02:17 -0600 |
commit | d734ebdde270c1e13e3b910e731bea88d874a51c (patch) | |
tree | adeca08fd11beb9bd4b87e7dbed6b70d4a07fd8f /lib/libalpm/error.c | |
parent | c2dbbd60bc8a4c90ec32fdbe9098ffae222d00d7 (diff) | |
download | pacman-d734ebdde270c1e13e3b910e731bea88d874a51c.tar.xz |
libalpm: clean up of md5sum functions.
test_delta_md5sum and test_pkg_md5sum were simple wrappers to test_md5sum,
and only used once, so not very useful. I removed them.
Also, test_md5sum and alpm_pkg_checkmd5sum functions were a bit duplicated,
so I refactored them with a new _alpm_test_md5sum function in libalpm/util.c
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Diffstat (limited to 'lib/libalpm/error.c')
-rw-r--r-- | lib/libalpm/error.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c index a68340ad..2e015a68 100644 --- a/lib/libalpm/error.c +++ b/lib/libalpm/error.c @@ -117,13 +117,11 @@ const char SYMEXPORT *alpm_strerror(int err) return _("cannot remove all files for package"); case PM_ERR_PKG_INVALID_NAME: return _("package name is not valid"); - case PM_ERR_PKG_CORRUPTED: - return _("corrupted package"); case PM_ERR_PKG_REPO_NOT_FOUND: return _("no such repository"); /* Deltas */ - case PM_ERR_DLT_CORRUPTED: - return _("corrupted delta"); + case PM_ERR_DLT_INVALID: + return _("invalid or corrupted delta"); case PM_ERR_DLT_PATCHFAILED: return _("delta patch failed"); /* Groups */ |