summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/be_sync.c
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-02-07 18:43:59 +0100
committerDan McGee <dan@archlinux.org>2012-02-13 17:02:02 +0100
commit20a16f55b32da071d362c2fa3faf1f55285d13a9 (patch)
tree00bb4cf9fcf0846d2a77a79d1317c66fecee19d1 /lib/libalpm/be_sync.c
parentf55be4897799c5a6dcb454455ad9edcfc36f8495 (diff)
downloadpacman-20a16f55b32da071d362c2fa3faf1f55285d13a9.tar.gz
pacman-20a16f55b32da071d362c2fa3faf1f55285d13a9.tar.xz
use _alpm_access in a few more places for increased debugging info
pacman -U <pkg> returns a bogus "could not find or read package" if the file is on a fuse file system that doesn't allow root access. Debug output isn't very helpful here either so we should log why the access check failed. The other 2 checks already log something when failing so logging a more specific error won't hurt either. Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_sync.c')
-rw-r--r--lib/libalpm/be_sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c
index c4673b1b..f1621996 100644
--- a/lib/libalpm/be_sync.c
+++ b/lib/libalpm/be_sync.c
@@ -86,7 +86,7 @@ static int sync_db_validate(alpm_db_t *db)
}
/* we can skip any validation if the database doesn't exist */
- if(access(dbpath, R_OK) != 0 && errno == ENOENT) {
+ if(_alpm_access(db->handle, NULL, dbpath, R_OK) != 0 && errno == ENOENT) {
db->status &= ~DB_STATUS_EXISTS;
db->status |= DB_STATUS_MISSING;
_alpm_log(db->handle, ALPM_LOG_WARNING,