From 7920edc2e6f51c97c991cf05ba53ad13417cf305 Mon Sep 17 00:00:00 2001 From: joey <> Date: Thu, 18 Nov 2004 12:55:54 +0000 Subject: [PATCH] Speed up the response by not checking each and every key anymore --- Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util.pm b/Util.pm index 8efabfb..b4b1e61 100644 --- a/Util.pm +++ b/Util.pm @@ -190,7 +190,7 @@ sub FetchKey { $fingerprint = "0x".$fingerprint; $/ = undef; # just suck it up .... - open(FP, "$config{gpg} --no-options --no-default-keyring $keyringparam --check-sigs --fingerprint $fingerprint|"); + open(FP, "$config{gpg} --no-options --no-default-keyring $keyringparam --list-sigs --fingerprint $fingerprint|"); $out = ; close FP; open(FP, "$config{gpg} --no-options --no-default-keyring $keyringparam --export -a $fingerprint|"); -- 2.20.1