summaryrefslogtreecommitdiffstats
path: root/src/pacman/check.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2012-05-04 05:56:55 +0200
committerAllan McRae <allan@archlinux.org>2012-12-14 04:45:12 +0100
commit327c272bb4540cee396f7e83ff98899876363a79 (patch)
tree52ca78bc58dccb1ecd341473fdf9339e0ff7ad25 /src/pacman/check.h
parentcfd9f1cc6948bc99d48e968efa4dd57f3375b93c (diff)
downloadpacman-327c272bb4540cee396f7e83ff98899876363a79.tar.gz
pacman-327c272bb4540cee396f7e83ff98899876363a79.tar.xz
Basic running of pacman -Qkk to check mtree files
If a package has an mtree file, using pacman -Qkk will read that file and use it to perform more in depth package checking. Currently this only checks for file presence. Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/pacman/check.h')
-rw-r--r--src/pacman/check.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pacman/check.h b/src/pacman/check.h
index b107a7f5..f71637c4 100644
--- a/src/pacman/check.h
+++ b/src/pacman/check.h
@@ -22,7 +22,8 @@
#include <alpm.h>
-int check(alpm_pkg_t *pkg);
+int check_pkg_fast(alpm_pkg_t *pkg);
+int check_pkg_full(alpm_pkg_t *pkg);
#endif /* _PM_CHECK_H */