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

@ -43,6 +43,7 @@
int verbose=0,include_disabled=0,include_revoked=0,include_subkeys=0;
char *basekeyspacedn=NULL;
char host[80];
char portstr[10];
FILE *input=NULL,*output=NULL,*console=NULL;
LDAP *ldap=NULL;
@ -227,8 +228,9 @@ int get_key(char *getkey)
if(!verbose)
attrs[1]=NULL;
fprintf(console,"gpgkeys: requesting key 0x%s from LDAP keyserver %s\n",
getkey,host);
if(verbose)
fprintf(console,"gpgkeys: requesting key 0x%s from ldap://%s%s%s\n",
getkey,host,portstr?":":"",portstr?portstr:"");
err=ldap_search_s(ldap,basekeyspacedn,
LDAP_SCOPE_SUBTREE,search,attrs,0,&res);
@ -659,7 +661,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;