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/util.h | |
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/util.h')
-rw-r--r-- | lib/libalpm/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index 4a06e3b0..6849fa19 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -65,6 +65,7 @@ int _alpm_str_cmp(const void *s1, const void *s2); char *_alpm_filecache_find(const char *filename); const char *_alpm_filecache_setup(void); int _alpm_lstat(const char *path, struct stat *buf); +int _alpm_test_md5sum(const char *filepath, const char *md5sum); #ifndef HAVE_STRVERSCMP int strverscmp(const char *, const char *); |