opgpcard: move creation time up in text output for 'status', and adjust printed field name
This commit is contained in:
parent
3a9d40454f
commit
ae25e6b608
1 changed files with 3 additions and 3 deletions
|
@ -310,12 +310,12 @@ impl KeySlotInfo {
|
||||||
if let Some(fp) = &self.fingerprint {
|
if let Some(fp) = &self.fingerprint {
|
||||||
lines.push(format!("Fingerprint: {}", fp));
|
lines.push(format!("Fingerprint: {}", fp));
|
||||||
}
|
}
|
||||||
|
if let Some(ts) = &self.creation_time {
|
||||||
|
lines.push(format!("Creation Time: {}", ts));
|
||||||
|
}
|
||||||
if let Some(a) = &self.algorithm {
|
if let Some(a) = &self.algorithm {
|
||||||
lines.push(format!("Algorithm: {}", a));
|
lines.push(format!("Algorithm: {}", a));
|
||||||
}
|
}
|
||||||
if let Some(ts) = &self.creation_time {
|
|
||||||
lines.push(format!("Created: {}", ts));
|
|
||||||
}
|
|
||||||
|
|
||||||
if verbose {
|
if verbose {
|
||||||
if let Some(policy) = &self.touch_policy {
|
if let Some(policy) = &self.touch_policy {
|
||||||
|
|
Loading…
Reference in a new issue