summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-01-20 13:01:33 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-01-20 13:11:16 +0100
commitf0f645c7a9b6926d0c542f4a4430d0fd47859b41 (patch)
tree16613d311652bd7b925086df6275eb3798d2ecd5 /tool
parent7f5a75e76bde1321af57839d6d84f293742e7a76 (diff)
openpgp: Rename ComponentAmalgamation::component_binding.
Diffstat (limited to 'tool')
-rw-r--r--tool/src/commands/inspect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/src/commands/inspect.rs b/tool/src/commands/inspect.rs
index 548e66ae..c20b1bfa 100644
--- a/tool/src/commands/inspect.rs
+++ b/tool/src/commands/inspect.rs
@@ -142,7 +142,7 @@ fn inspect_cert(output: &mut dyn io::Write, cert: &openpgp::Cert,
writeln!(output, " Subkey: {}", ka.key().fingerprint())?;
inspect_revocation(output, "", ka.revoked())?;
inspect_key(output, "", ka.key(), ka.binding_signature(),
- ka.component_binding().certifications(),
+ ka.binding().certifications(),
print_keygrips, print_certifications)?;
writeln!(output)?;
}