diff options
author | Werner Koch <[email protected]> | 2017-08-04 15:09:17 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-08-04 15:09:17 +0000 |
commit | b54d75fb1dcfa2cebb3a2497b81ffb49acac2056 (patch) | |
tree | 2fc61a222d214b422d027992c77a42e3949f43bb | |
parent | gpg: New import option show-only. (diff) | |
download | gnupg-b54d75fb1dcfa2cebb3a2497b81ffb49acac2056.tar.gz gnupg-b54d75fb1dcfa2cebb3a2497b81ffb49acac2056.zip |
gpg: Avoid double fingerprint printing with import-show.
* g10/import.c (import_one) <IMPORT_SHOW>: Take care of fingerprint
options.
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | g10/import.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/import.c b/g10/import.c index b1b8e0f9e..5b55f8f82 100644 --- a/g10/import.c +++ b/g10/import.c @@ -1778,7 +1778,8 @@ import_one (ctrl_t ctrl, merge_keys_done = 1; /* Note that we do not want to show the validity because the key * has not yet imported. */ - list_keyblock_direct (ctrl, keyblock, 0, 0, 1, 1); + list_keyblock_direct (ctrl, keyblock, 0, 0, + opt.fingerprint || opt.with_fingerprint, 1); es_fflush (es_stdout); } |