X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/1754a2860ffcb23b70eecc902b0ec795c7efa595..2edb917ed0be24b4a525bef5aa346389afbd1be3:/stats.c?ds=inline
diff --git a/stats.c b/stats.c
index 538e888..2e63479 100644
--- a/stats.c
+++ b/stats.c
@@ -170,25 +170,25 @@ void dofindpath(uint64_t have, uint64_t want, bool html)
" not found])%s
\n",
curkey->keyid & 0xFFFFFFFF,
curkey->keyid & 0xFFFFFFFF,
- (curkey->keyid == want) ? "" :
+ (curkey->keyid == fullwant) ? "" :
" signs");
} else if (html && uid != NULL) {
printf("0x%08llX"
" (%s)%s
\n",
+ "&search=0x%08llX\">%s)%s
\n",
curkey->keyid & 0xFFFFFFFF,
curkey->keyid & 0xFFFFFFFF,
curkey->keyid & 0xFFFFFFFF,
txt2html(uid),
- (curkey->keyid == want) ? "" :
+ (curkey->keyid == fullwant) ? "" :
" signs");
} else {
printf("0x%08llX (%s)%s\n",
curkey->keyid & 0xFFFFFFFF,
(uid == NULL) ? "[User id not found]" :
uid,
- (curkey->keyid == want) ? "" :
+ (curkey->keyid == fullwant) ? "" :
" signs");
}
if (uid != NULL) {
@@ -208,6 +208,13 @@ void dofindpath(uint64_t have, uint64_t want, bool html)
curkey = findinhash(curkey->parent);
}
putchar('\n');
+ if (html) {
+ printf("
"
+ ""
+ "Find reverse path\n",
+ want,
+ have);
+ }
}
}