[git] GnuPG - branch, master, updated. gnupg-2.1.17-9-ge917dfc
by Werner Koch
cvs at cvs.gnupg.org
Thu Dec 22 14:43:34 CET 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".
The branch, master has been updated
via e917dfcd973a3ebbf5eb584e819ffa89f932bfef (commit)
from 8431f5a7e88e1f42d75c4a4b61f4aa9b35457204 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e917dfcd973a3ebbf5eb584e819ffa89f932bfef
Author: Werner Koch <wk at gnupg.org>
Date: Thu Dec 22 14:39:11 2016 +0100
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 at gnupg.org>
diff --git a/NEWS b/NEWS
index 1a8a989..79bbbbc 100644
--- a/NEWS
+++ b/NEWS
@@ -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
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"
for --list-config.
diff --git a/tools/gpg-wks-client.c b/tools/gpg-wks-client.c
index 0f90424..d58c81b 100644
--- a/tools/gpg-wks-client.c
+++ b/tools/gpg-wks-client.c
@@ -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));
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 +-
tools/gpg-wks-client.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list