Fingerprint: add new signature method

commit c42a54795d introcuded a bug by
using fp.to_string(). Replace this with fp.signature() which correctly
returns the full fingerprint instead of the short version.

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
Dietmar Maurer
2021-11-22 08:19:09 +01:00
parent 94a6b33680
commit ca6e66aa5a
5 changed files with 7 additions and 4 deletions

View File

@ -100,7 +100,7 @@ impl From<&KeyConfig> for KeyInfo {
fingerprint: key_config
.fingerprint
.as_ref()
.map(|fp| fp.to_string()),
.map(|fp| fp.signature()),
hint: key_config.hint.clone(),
}
}

View File

@ -190,5 +190,5 @@ pub fn complete_key_fingerprint(_arg: &str, _param: &HashMap<String, String>) ->
Err(_) => return Vec::new(),
};
data.keys().map(|fp| fp.to_string()).collect()
data.keys().map(|fp| fp.signature()).collect()
}