diff options
author | Werner Koch <[email protected]> | 2024-10-07 08:33:13 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-10-07 08:33:13 +0000 |
commit | 1a7bc88ee756df127761c90a4b66d885f0c9de74 (patch) | |
tree | ca5939b955db8d154076db34e1c65ee33a8aadd5 /src/util.h | |
parent | core: Allow GPGME_CREATE_ADSK also for gnupg 2.2.45 (diff) | |
download | gpgme-1a7bc88ee756df127761c90a4b66d885f0c9de74.tar.gz gpgme-1a7bc88ee756df127761c90a4b66d885f0c9de74.zip |
core: New flag fields beta_compliance.
* src/gpgme.h.in (struct _gpgme_subkey): Add field beta_compliance.
(struct _gpgme_op_decrypt_result): Ditto.
(struct _gpgme_signature): Ditto.
* src/util.h (PARSE_COMPLIANCE_FLAGS): Handle the new 2023 value.
* tests/run-decrypt.c: Append a "(beta)" to the vs-de compliance.
* tests/run-keylist.c: Ditto.
* tests/run-verify.c: Ditto.
--
See GnuPG commit b287fb577587655559fefb90f7ed90c9a15dc6a3
Diffstat (limited to '')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -230,6 +230,7 @@ int _gpgme_assuan_log_cb (assuan_context_t ctx, void *hook, { \ switch (comp_ul) \ { \ + case 2023: (result)->beta_compliance = 1; /*fallthru */ \ case 23: (result)->is_de_vs = 1; break; \ } \ } \ |