1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-31 22:18:03 +02:00

wks: Let the client ignore missing policy flags.

* tools/gpg-wks-client.c (command_send): Ignore missing policy flags.

Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
Werner Koch 2016-12-22 14:39:11 +01:00
parent 8431f5a7e8
commit e917dfcd97
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B
2 changed files with 2 additions and 2 deletions

2
NEWS
View File

@ -591,7 +591,7 @@ Noteworthy changes in version 2.1.3 (2015-04-11)
* gpg: New option --print-pka-records. Changed the PKA method to use * gpg: New option --print-pka-records. Changed the PKA method to use
CERT records and hashed names. [Update: --print-pka-records CERT records and hashed names. [Update: --print-pka-records
replaced in 2.1.4.] replaced in 2.1.14.]
* gpg: New command --list-gcrypt-config. New parameter "curve" * gpg: New command --list-gcrypt-config. New parameter "curve"
for --list-config. for --list-config.

View File

@ -699,7 +699,7 @@ command_send (const char *fingerprint, char *userid)
estream_t mbuf; estream_t mbuf;
err = wkd_get_policy_flags (addrspec, &mbuf); err = wkd_get_policy_flags (addrspec, &mbuf);
if (err) if (err && gpg_err_code (err) != GPG_ERR_NO_DATA)
{ {
log_error ("error reading policy flags for '%s': %s\n", log_error ("error reading policy flags for '%s': %s\n",
submission_to, gpg_strerror (err)); submission_to, gpg_strerror (err));