summaryrefslogtreecommitdiffstats
path: root/tool/src
diff options
context:
space:
mode:
Diffstat (limited to 'tool/src')
-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 e1e8a217..438a2f77 100644
--- a/tool/src/commands/inspect.rs
+++ b/tool/src/commands/inspect.rs
@@ -178,7 +178,7 @@ fn inspect_key<P, R>(output: &mut io::Write,
if let Some(sig) = binding_signature {
if sig.key_expired(key, None) {
writeln!(output, "{} Expired", indent)?;
- } else if ! sig.key_alive(key) {
+ } else if ! sig.key_alive(key, None) {
writeln!(output, "{} Not yet valid", indent)?;
}
}