diff options
author | David Shaw <dshaw@jabberwocky.com> | 2002-07-03 00:13:00 +0200 |
---|---|---|
committer | David Shaw <dshaw@jabberwocky.com> | 2002-07-03 00:13:00 +0200 |
commit | c6feade425cef16e25bc763afe648b160e7d817b (patch) | |
tree | c1542e2d868d82241c41c28eb2f5c7c190e629dc /g10/keyserver.c | |
parent | * verify.c (gpgsm_verify): Extend the STATUS_BADSIG line with (diff) | |
download | gnupg2-c6feade425cef16e25bc763afe648b160e7d817b.tar.xz gnupg2-c6feade425cef16e25bc763afe648b160e7d817b.zip |
* options.h, g10.c (main), keyserver.c (keyserver_refresh): Maintain and
use the original keyserver URI for cosmetics rather than trying to
recreate it when needed.
* mainproc.c (check_sig_and_print): Properly disregard expired uids.
Make sure that the first uid listed is a real uid and not an attribute
(attributes should only be listed in the "aka" section). When there are
no valid textual userids, try for an invalid textual userid before using
any attribute uid.
Diffstat (limited to 'g10/keyserver.c')
-rw-r--r-- | g10/keyserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/keyserver.c b/g10/keyserver.c index 9338bfbb7..df7ef48e9 100644 --- a/g10/keyserver.c +++ b/g10/keyserver.c @@ -905,9 +905,9 @@ keyserver_refresh(STRLIST users) return rc; if(count==1) - log_info(_("%d key to refresh\n"),count); + log_info(_("refreshing 1 key from %s\n"),opt.keyserver_uri); else - log_info(_("%d keys to refresh\n"),count); + log_info(_("refreshing %d keys from %s\n"),count,opt.keyserver_uri); if(count>0) rc=keyserver_work(GET,NULL,desc,count); |