1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

* gpgkeys_ldap.c (get_key, search_key), gpgkeys_hkp.c (get_key,

search_key), gpgkeys_http.c (get_key): Do not give informational logs
since this is now done inside gpg.
This commit is contained in:
David Shaw 2004-08-23 19:54:40 +00:00
parent 10eb272a73
commit 6c5507fff0
4 changed files with 4 additions and 18 deletions

View file

@ -249,10 +249,6 @@ get_key(char *getkey)
fprintf(output,"KEY 0x%s BEGIN\n",getkey);
if(verbose)
fprintf(console,"gpgkeys: requesting key 0x%s from hkp://%s%s%s\n",
getkey,host,port[0]?":":"",port[0]?port:"");
request=malloc(strlen(host)+100);
if(!request)
{
@ -674,9 +670,6 @@ search_key(char *searchkey)
search[len]='\0';
fprintf(console,("gpgkeys: searching for \"%s\" from HKP server %s\n"),
searchkey,host);
request=malloc(strlen(host)+100+strlen(search));
if(!request)
{