diff options
author | James Booth <boothj5@gmail.com> | 2015-08-30 02:12:05 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-08-30 02:12:05 +0100 |
commit | 688be91c23aaa2f6a16db56d884d8920a3b11af5 (patch) | |
tree | 6fb0c42d07e8e35acf3fd773136f21dc4bcad7ce /src/command | |
parent | b4722632b6fa447386b7d786efc8dafd22a3671c (diff) | |
download | profani-tty-688be91c23aaa2f6a16db56d884d8920a3b11af5.tar.gz |
PGP: Format fingerprints
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/commands.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index 06c6d9b8..ca67f709 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -4238,7 +4238,9 @@ cmd_pgp(ProfWin *window, const char * const command, gchar **args) ProfPGPKey *key = g_hash_table_lookup(keys, curr->data); cons_show(" %s", key->name); cons_show(" ID : %s", key->id); - cons_show(" Fingerprint : %s", key->fp); + char *format_fp = p_gpg_format_fp_str(key->fp); + cons_show(" Fingerprint : %s", format_fp); + free(format_fp); if (key->secret) { cons_show(" Type : PUBLIC, PRIVATE"); } else { |