diff options
author | Chantry Xavier <shiningxc@gmail.com> | 2008-02-27 00:50:17 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-28 02:02:17 +0100 |
commit | d734ebdde270c1e13e3b910e731bea88d874a51c (patch) | |
tree | adeca08fd11beb9bd4b87e7dbed6b70d4a07fd8f /lib/libalpm/alpm.h | |
parent | c2dbbd60bc8a4c90ec32fdbe9098ffae222d00d7 (diff) | |
download | pacman-d734ebdde270c1e13e3b910e731bea88d874a51c.tar.gz 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/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 2f9eae77..4e2c2219 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -458,10 +458,9 @@ enum _pmerrno_t { PM_ERR_PKG_CANT_FRESH, PM_ERR_PKG_CANT_REMOVE, PM_ERR_PKG_INVALID_NAME, - PM_ERR_PKG_CORRUPTED, PM_ERR_PKG_REPO_NOT_FOUND, /* Deltas */ - PM_ERR_DLT_CORRUPTED, + PM_ERR_DLT_INVALID, PM_ERR_DLT_PATCHFAILED, /* Groups */ PM_ERR_GRP_NOT_FOUND, |