diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-12-05 08:00:22 +0100 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-12-05 08:00:22 +0100 |
commit | 2116ce78fb2e28c15f6f97e98ab88967b8a2dcec (patch) | |
tree | fbcbc01dc2866fb393a51b76fd8ef4f8269818f1 /lib/libalpm/deps.c | |
parent | 8028a1124abd585e5570cce95e8901eee15237be (diff) | |
download | pacman-2116ce78fb2e28c15f6f97e98ab88967b8a2dcec.tar.gz pacman-2116ce78fb2e28c15f6f97e98ab88967b8a2dcec.tar.xz |
Corrected -Rsc operation - dependancy info was not being read from the DB
Diffstat (limited to 'lib/libalpm/deps.c')
-rw-r--r-- | lib/libalpm/deps.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index 7b32b7d0..43aa6407 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -465,6 +465,9 @@ pmlist_t *_alpm_removedeps(pmdb_t *db, pmlist_t *targs) } FREELISTPTR(k); } + + _alpm_db_read(db, INFRQ_DEPENDS, dep); + if(_alpm_pkg_isin(dep->name, targs)) { continue; } |