mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
* hkp.c (hkp_search): Return proper error code on failure.
* keyedit.c (sign_uids): Do not allow signing a user ID without a self-signature. --expert overrides. * options.skel: Use subkeys.pgp.net as the default keyserver. * trustdb.c (validate_one_keyblock): Certifications on revoked or expired uids do not count in the web of trust.
This commit is contained in:
parent
d67479006e
commit
a5381060d2
5 changed files with 49 additions and 15 deletions
|
@ -366,7 +366,7 @@ parse_hkp_index(IOBUF buffer,char *line)
|
|||
{
|
||||
m_free(key);
|
||||
m_free(uid);
|
||||
log_error(_("this keyserver is not fully HKP compatible\n"));
|
||||
log_error(_("this keyserver does not support --search-keys\n"));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -598,7 +598,10 @@ int hkp_search(STRLIST tokens)
|
|||
|
||||
ret=parse_hkp_index(buffer,line);
|
||||
if(ret==-1)
|
||||
break;
|
||||
{
|
||||
rc=G10ERR_KEYSERVER;
|
||||
break;
|
||||
}
|
||||
|
||||
if(rc!=0)
|
||||
count+=ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue