From 73c6779067548fdbecd1627669c3cd93cc10d995 Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Tue, 29 Mar 2005 22:18:00 +0000 Subject: removed an uneeded call to db_scan --- lib/libalpm/add.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/libalpm/add.c') diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c index 034643ef..3b7eca72 100644 --- a/lib/libalpm/add.c +++ b/lib/libalpm/add.c @@ -315,13 +315,9 @@ int add_commit(pmdb_t *db, pmtrans_t *trans) /* Update the requiredby field by scaning the whole database * looking for packages depending on the package to add */ for(lp = db_get_pkgcache(db); lp; lp = lp->next) { - pmpkg_t *tmpp = NULL; + pmpkg_t *tmpp = lp->data; PMList *tmppm = NULL; - /* ORE - is it useful to call db_scan(DEPENDS)? - depends info are already stored in the cache... */ - tmpp = db_scan(db, ((pmpkg_t *)lp->data)->name, INFRQ_DEPENDS); if(tmpp == NULL) { continue; } -- cgit v1.2.3