diff options
author | Werner Koch <[email protected]> | 2016-09-19 15:47:56 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-09-19 15:48:04 +0000 |
commit | 998643666c016dbacf10f813c22efc97deadec65 (patch) | |
tree | 3223692594e8ab5fb0ab0fa4ad82c08497a610f0 | |
parent | dirmngr: Silence diagnostics about starting housekeeping. (diff) | |
download | gnupg-998643666c016dbacf10f813c22efc97deadec65.tar.gz gnupg-998643666c016dbacf10f813c22efc97deadec65.zip |
gpg: Fix regression in fingerprint printing.
* g10/keylist.c (list_keyblock_print): Do not depend calling
print_fingerprint on opt.keyid_format.
--
Regression-due-to: d757009a24eb856770fc3a3729e2f21f54d2a618
Debian-bug-id: 838153
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | g10/keylist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/keylist.c b/g10/keylist.c index bef1e0775..212d77efe 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -909,7 +909,7 @@ list_keyblock_print (ctrl_t ctrl, kbnode_t keyblock, int secret, int fpr, /* Print the "pub" line and in KF_NONE mode the fingerprint. */ print_key_line (es_stdout, pk, secret); - if (fpr && opt.keyid_format != KF_NONE) + if (fpr) print_fingerprint (NULL, pk, 0); if (opt.with_keygrip && hexgrip) |