diff options
author | Werner Koch <[email protected]> | 2015-04-06 18:23:05 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-04-06 18:23:05 +0000 |
commit | c2383407bba5eefea486464a31e02846124c9da5 (patch) | |
tree | 2dc6904547a4ca317c2f818d14ce86c5d3648922 | |
parent | gpg: Prepare to pass additional context to the list functions. (diff) | |
download | gnupg-c2383407bba5eefea486464a31e02846124c9da5.tar.gz gnupg-c2383407bba5eefea486464a31e02846124c9da5.zip |
gpg: Print the user id in --fast-list-mode.
* g10/keylist.c (list_keyblock_print, list_keyblock_colon): Change.
-rw-r--r-- | g10/keylist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/keylist.c b/g10/keylist.c index ac46691ec..d62bc2006 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -998,7 +998,7 @@ list_keyblock_print (KBNODE keyblock, int secret, int fpr, for (kbctx = NULL; (node = walk_kbnode (keyblock, &kbctx, 0));) { - if (node->pkt->pkttype == PKT_USER_ID && !opt.fast_list_mode) + if (node->pkt->pkttype == PKT_USER_ID) { PKT_user_id *uid = node->pkt->pkt.user_id; @@ -1370,7 +1370,7 @@ list_keyblock_colon (KBNODE keyblock, int secret, int has_secret, int fpr) for (kbctx = NULL; (node = walk_kbnode (keyblock, &kbctx, 0));) { - if (node->pkt->pkttype == PKT_USER_ID && !opt.fast_list_mode) + if (node->pkt->pkttype == PKT_USER_ID) { char *str; PKT_user_id *uid = node->pkt->pkt.user_id; |