From c2383407bba5eefea486464a31e02846124c9da5 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Mon, 6 Apr 2015 20:23:05 +0200 Subject: [PATCH] gpg: Print the user id in --fast-list-mode. * g10/keylist.c (list_keyblock_print, list_keyblock_colon): Change. --- g10/keylist.c | 4 ++-- 1 file 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;