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:
parent
db765c90d8
commit
2b0bb77e6d
3 changed files with 48 additions and 13 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue