summaryrefslogtreecommitdiffstats
path: root/g10/keyserver.c
diff options
context:
space:
mode:
authorDavid Shaw <dshaw@jabberwocky.com>2002-07-03 00:13:00 +0200
committerDavid Shaw <dshaw@jabberwocky.com>2002-07-03 00:13:00 +0200
commitc6feade425cef16e25bc763afe648b160e7d817b (patch)
treec1542e2d868d82241c41c28eb2f5c7c190e629dc /g10/keyserver.c
parent* verify.c (gpgsm_verify): Extend the STATUS_BADSIG line with (diff)
downloadgnupg2-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.c4
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);