prepare code for cache loaded with only DEPENDS

This commit is contained in:
Aurelien Foret 2006-03-07 20:45:38 +00:00
parent 8f12ce618c
commit fa5e6cef75
1 changed files with 3 additions and 4 deletions

View File

@ -420,9 +420,8 @@ void *alpm_pkg_getinfo(pmpkg_t *pkg, unsigned char parm)
if(pkg->origin == PKG_FROM_CACHE) {
switch(parm) {
/* Desc entry */
/* not needed: the cache is loaded with DESC by default
case PM_PKG_NAME:
case PM_PKG_VERSION:
/*case PM_PKG_NAME:
case PM_PKG_VERSION:*/
case PM_PKG_DESC:
case PM_PKG_GROUPS:
case PM_PKG_URL:
@ -438,7 +437,7 @@ void *alpm_pkg_getinfo(pmpkg_t *pkg, unsigned char parm)
_alpm_log(PM_LOG_DEBUG, "loading DESC info for '%s'", pkg->name);
_alpm_db_read(pkg->data, INFRQ_DESC, pkg);
}
break;*/
break;
/* Depends entry */
/* not needed: the cache is loaded with DEPENDS by default
case PM_PKG_DEPENDS: