summaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2019-09-18 16:04:18 +0200
committerNeal H. Walfield <neal@pep.foundation>2019-09-18 16:04:18 +0200
commit044854773282eed2be23aab511d5dc38ffbe21ca (patch)
treed3affcb154624eab106d06c254128730be868f1b /tool
parentc619dffe8562872ad33c501b7f3c3cd9edb7f00b (diff)
openpgp: Combine Signature4::signature_alive and its _at variant.
- Combine Signature4::signature_alive and Signature4::signature_alive_at. - Use an Into<Option<time::Tm>> to distinguish the two previous cases: the current time (None), and a specific time (a time::Tm).
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 526490e0..6d594c51 100644
--- a/tool/src/commands/inspect.rs
+++ b/tool/src/commands/inspect.rs
@@ -151,7 +151,7 @@ fn inspect_tpk(output: &mut io::Write, tpk: &openpgp::TPK,
if let Some(sig) = uidb.binding_signature(None) {
if sig.signature_expired(None) {
writeln!(output, " Expired")?;
- } else if ! sig.signature_alive() {
+ } else if ! sig.signature_alive(None) {
writeln!(output, " Not yet valid")?;
}
}