X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=stats.c;h=39e96c0c65b6a618bff174de5ab8fb7ea1ac6d29;hb=87fbdd69b1885c6588ec924e37b734f2c3c5ed35;hp=3f897ca905e5a4f1d95b633f2bc2be6c9b584342;hpb=34b03028378025ad22c8d29f70e81109cee690c2;p=onak.git diff --git a/stats.c b/stats.c index 3f897ca..39e96c0 100644 --- a/stats.c +++ b/stats.c @@ -67,7 +67,7 @@ unsigned long findpath(struct stats_key *have, struct stats_key *want) oldkeys = keys; while (keys != NULL && have->colour == 0) { - sigs = hash_getkeysigs(((struct stats_key *) + sigs = cached_getkeysigs(((struct stats_key *) keys->object)->keyid); while (sigs != NULL && have->colour == 0) { /* @@ -129,8 +129,8 @@ void dofindpath(uint64_t have, uint64_t want, bool html) /* * Make sure the keys we have and want are in the cache. */ - hash_getkeysigs(fullhave); - hash_getkeysigs(fullwant); + cached_getkeysigs(fullhave); + cached_getkeysigs(fullwant); if ((keyinfoa = findinhash(fullhave)) == NULL) { printf("Couldn't find key 0x%llX.\n", have); @@ -232,7 +232,7 @@ struct stats_key *furthestkey(struct stats_key *have) curll = lladd(NULL, have); while (curll != NULL) { - sigs = hash_getkeysigs(((struct stats_key *) + sigs = cached_getkeysigs(((struct stats_key *) curll->object)->keyid); while (sigs != NULL) { if (((struct stats_key *) sigs->object)->colour == 0) {