diff options
author | Dan McGee <dan@archlinux.org> | 2007-03-12 03:02:57 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-03-12 03:02:57 +0000 |
commit | ba1806f5aca616390355a4258f7edb43ab8b0b66 (patch) | |
tree | 9731fe669fd233406a3f118e7e5a3c69a427e13a /lib/libalpm/be_files.c | |
parent | 9ba23c8248eac4406b374f25feafcad873db89be (diff) | |
download | pacman-ba1806f5aca616390355a4258f7edb43ab8b0b66.tar.xz |
* Removed ${CFLAGS} from Makefile.am(s) as it was causing all CFLAGS to be
duplicated.
* Updated the util Makefile.am to link with the proper libalpm.la.
* Fixed bitmasking issues in be_files.c and db.h.
* Rankmirrors updates from James Rosten (with some cleaning up of my own).
KeyboardInterrupts are now handled gracefully.
Diffstat (limited to 'lib/libalpm/be_files.c')
-rw-r--r-- | lib/libalpm/be_files.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libalpm/be_files.c b/lib/libalpm/be_files.c index 6e2f4c4f..30f6f905 100644 --- a/lib/libalpm/be_files.c +++ b/lib/libalpm/be_files.c @@ -227,7 +227,12 @@ int _alpm_db_read(pmdb_t *db, pmpkg_t *info, pmdbinfrq_t inforeq) return(-1); } - if(info->infolevel & inforeq) { + /* bitmask logic here: + * infolevel: 00001111 + * inforeq: 00010100 + * & result: 00000100 + * == to inforeq? nope, we need to load more info. */ + if((info->infolevel & inforeq) == inforeq) { /* already loaded this info, do nothing */ return(0); } |