summaryrefslogtreecommitdiffstats
path: root/net/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'net/src/lib.rs')
-rw-r--r--net/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/src/lib.rs b/net/src/lib.rs
index 277761a8..3ab03a61 100644
--- a/net/src/lib.rs
+++ b/net/src/lib.rs
@@ -184,7 +184,7 @@ impl KeyServer {
match TPK::from_reader(r) {
Ok(tpk) => {
if tpk.keys_all().any(|(_, _, key)| {
- key.fingerprint().to_keyid()
+ KeyID::from(key.fingerprint())
== keyid_want
}) {
future::done(Ok(tpk))