From 99d42b479ab341248901d5af82d5980542e6c702 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Fri, 5 Oct 2012 11:34:22 +0300 Subject: [PATCH] Rename rpmalProvidesHash to rpmalDepHash - The same hash type is valid for any ds and we'll be adding more... --- lib/rpmal.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/rpmal.c b/lib/rpmal.c index 1425339e8..c2b4fc8f7 100644 --- a/lib/rpmal.c +++ b/lib/rpmal.c @@ -45,7 +45,7 @@ struct fileNameEntry_s { #undef HASHTYPE #undef HTKEYTYPE #undef HTDATATYPE -#define HASHTYPE rpmalProvidesHash +#define HASHTYPE rpmalDepHash #define HTKEYTYPE rpmsid #define HTDATATYPE struct availableIndexEntry_s #include "lib/rpmhash.H" @@ -66,7 +66,7 @@ struct fileNameEntry_s { struct rpmal_s { rpmstrPool pool; /*!< String pool */ availablePackage list; /*!< Set of packages. */ - rpmalProvidesHash providesHash; + rpmalDepHash providesHash; rpmalFileHash fileHash; int delta; /*!< Delta for pkg list reallocation. */ int size; /*!< No. of pkgs in list. */ @@ -82,7 +82,7 @@ struct rpmal_s { */ static void rpmalFreeIndex(rpmal al) { - al->providesHash = rpmalProvidesHashFree(al->providesHash); + al->providesHash = rpmalDepHashFree(al->providesHash); al->fileHash = rpmalFileHashFree(al->fileHash); } @@ -228,7 +228,7 @@ static void rpmalAddProvides(rpmal al, rpmalNum pkgNum, rpmds provides) continue; indexEntry.entryIx = i;; - rpmalProvidesHashAddEntry(al->providesHash, + rpmalDepHashAddEntry(al->providesHash, rpmdsNIdIndex(provides, i), indexEntry); } } @@ -304,7 +304,7 @@ static void rpmalMakeProvidesIndex(rpmal al) providesCnt += rpmdsCount(alp->provides); } - al->providesHash = rpmalProvidesHashCreate(providesCnt/4+128, + al->providesHash = rpmalDepHashCreate(providesCnt/4+128, sidHash, sidCmp, NULL, NULL); for (i = 0; i < al->size; i++) { alp = al->list + i; @@ -386,7 +386,7 @@ rpmte * rpmalAllSatisfiesDepend(const rpmal al, const rpmds ds) if (al->providesHash == NULL) rpmalMakeProvidesIndex(al); - rpmalProvidesHashGetEntry(al->providesHash, nameId, &result, + rpmalDepHashGetEntry(al->providesHash, nameId, &result, &resultCnt, NULL); if (resultCnt==0) return NULL;