summaryrefslogtreecommitdiffstats
path: root/tool/src/commands
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-09-27 13:22:45 +0200
committerJustus Winter <justus@sequoia-pgp.org>2018-09-27 13:32:37 +0200
commit8e2f41ecee0553ec4749883e28eefdeaf52b9fc8 (patch)
treef011d308cc30125f65000f5f3e2e8c25410b1a6a /tool/src/commands
parent21fccc353d14e47c718caf43d0ef25323d217183 (diff)
store: Rename method.
- Make clear that this lookup also looks for subkeys.
Diffstat (limited to 'tool/src/commands')
-rw-r--r--tool/src/commands/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/mod.rs b/tool/src/commands/mod.rs
index 147db635..0c6a5295 100644
--- a/tool/src/commands/mod.rs
+++ b/tool/src/commands/mod.rs
@@ -407,7 +407,7 @@ impl<'a> VerificationHelper for VHelper<'a> {
// Try to get missing TPKs from the store.
for id in ids.iter().filter(|i| !seen.contains(i)) {
let _ =
- self.store.lookup_by_keyid(id)
+ self.store.lookup_by_subkeyid(id)
.and_then(|binding| {
self.labels.insert(id.clone(), binding.label()?);
binding.tpk()