aboutsummaryrefslogtreecommitdiffstats
path: root/tests/run-verify.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2024-10-07 08:33:13 +0000
committerWerner Koch <[email protected]>2024-10-07 08:33:13 +0000
commit1a7bc88ee756df127761c90a4b66d885f0c9de74 (patch)
treeca5939b955db8d154076db34e1c65ee33a8aadd5 /tests/run-verify.c
parentcore: Allow GPGME_CREATE_ADSK also for gnupg 2.2.45 (diff)
downloadgpgme-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 'tests/run-verify.c')
-rw-r--r--tests/run-verify.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/run-verify.c b/tests/run-verify.c
index 2d53ad19..13efd89f 100644
--- a/tests/run-verify.c
+++ b/tests/run-verify.c
@@ -159,11 +159,11 @@ print_result (gpgme_verify_result_t result)
sig->pka_trust == 0? "n/a" :
sig->pka_trust == 1? "bad" :
sig->pka_trust == 2? "okay": "RFU");
- printf (" other flags:%s%s%s\n",
+ printf (" other flags:%s%s%s%s\n",
sig->wrong_key_usage? " wrong-key-usage":"",
sig->chain_model? " chain-model":"",
- sig->is_de_vs? " de-vs":""
- );
+ sig->is_de_vs? " de-vs":"",
+ sig->is_de_vs && sig->beta_compliance? "(beta)":"");
for (nt = sig->notations; nt; nt = nt->next)
{
if (nt->name)