1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* gpgkeys_ldap.c (get_key), gpgkeys_hkp.c (get_key): Display keyserver URI

as a URI, but only if verbose.
This commit is contained in:
David Shaw 2002-07-04 14:14:08 +00:00
parent 1c3fae007b
commit a811246420
3 changed files with 13 additions and 6 deletions

View file

@ -40,6 +40,7 @@
int verbose=0,include_disabled=0,include_revoked=0;
char *basekeyspacedn=NULL;
char host[80];
char portstr[10];
FILE *input=NULL,*output=NULL,*console=NULL,*server=NULL;
struct keylist
@ -287,8 +288,9 @@ int get_key(char *getkey)
if(verbose>2)
fprintf(console,"gpgkeys: HKP fetch for: %s\n",search);
fprintf(console,"gpgkeys: requesting key 0x%s from HKP keyserver %s\n",
getkey,host);
if(verbose)
fprintf(console,"gpgkeys: requesting key 0x%s from hkp://%s%s%s\n",
getkey,host,portstr?":":"",portstr?portstr:"");
err=http_get("get",search);
if(err!=0)
@ -724,7 +726,6 @@ int main(int argc,char *argv[])
while(fgets(line,MAX_LINE,input)!=NULL)
{
char commandstr[7];
char portstr[10];
char optionstr[30];
char hash;