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

* gpgkeys_hkp.c (parse_hkp_index): Error if the keyserver returns an

unparseable HKP response.

* gpgkeys_hkp.c (main): Warn on honor-http-proxy, broken-http-proxy, and
include-subkeys (not supported yet).

* gpgkeys_ldap.c (main), gpgkeys_hkp.c (http_connect, main): Fix some
shadowing warnings.
This commit is contained in:
David Shaw 2002-07-01 17:46:56 +00:00
parent db765c90d8
commit 2b0bb77e6d
3 changed files with 48 additions and 13 deletions

View file

@ -901,15 +901,15 @@ int main(int argc,char *argv[])
case SEND:
{
int ret;
int ret2;
do
{
ret=send_key();
if(ret==-1)
ret2=send_key();
if(ret2==-1)
failed++;
}
while(ret!=1);
while(ret2!=1);
}
break;