1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +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

View file

@ -699,7 +699,7 @@ command_send (const char *fingerprint, char *userid)
estream_t 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",
submission_to, gpg_strerror (err));